summaryrefslogtreecommitdiff
path: root/src/main/kotlin/util
diff options
context:
space:
mode:
authornea <romangraef@gmail.com>2021-08-13 00:54:39 +0200
committernea <romangraef@gmail.com>2021-08-13 00:54:39 +0200
commit06d9212e5901b8b73e17bb8938b0c4542a42770b (patch)
tree15ca09200aea736f4342d34d29a08f343e4d2c68 /src/main/kotlin/util
parent2ee4b7c2bef9f80ed12e58bc3cdbb965299920e1 (diff)
downloadwebos-06d9212e5901b8b73e17bb8938b0c4542a42770b.tar.gz
webos-06d9212e5901b8b73e17bb8938b0c4542a42770b.tar.bz2
webos-06d9212e5901b8b73e17bb8938b0c4542a42770b.zip
test basics
Diffstat (limited to 'src/main/kotlin/util')
-rw-r--r--src/main/kotlin/util/sequence.kt5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/kotlin/util/sequence.kt b/src/main/kotlin/util/sequence.kt
deleted file mode 100644
index 72b07dc..0000000
--- a/src/main/kotlin/util/sequence.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package util
-
-fun <T> Iterable<T>.expandWith(t: T): Sequence<T> =
- this.asSequence() + generateSequence { t }.asSequence()
-