Last active
December 18, 2020 10:36
-
-
Save jivimberg/ff5aad3f5c6315deb420fd508a145c61 to your computer and use it in GitHub Desktop.
Inclusive implementation of takeWhile for Kotlin. Inspired from this gist: https://gist.github.com/matklad/54776705250e3b375618f59a8247a237 . Read more about this implementation on my blog: https://jivimberg.io/blog/2018/06/02/implementing-takewhileinclusive-in-kotlin/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// kotlin.collections | |
inline fun <T> Array<out T>.takeWhileInclusive( | |
predicate: (T) -> Boolean | |
): List<T> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun ByteArray.takeWhileInclusive( | |
predicate: (Byte) -> Boolean | |
): List<Byte> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun ShortArray.takeWhileInclusive( | |
predicate: (Short) -> Boolean | |
): List<Short> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun IntArray.takeWhileInclusive( | |
predicate: (Int) -> Boolean | |
): List<Int> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun LongArray.takeWhileInclusive( | |
predicate: (Long) -> Boolean | |
): List<Long> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun FloatArray.takeWhileInclusive( | |
predicate: (Float) -> Boolean | |
): List<Float> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun DoubleArray.takeWhileInclusive( | |
predicate: (Double) -> Boolean | |
): List<Double> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun BooleanArray.takeWhileInclusive( | |
predicate: (Boolean) -> Boolean | |
): List<Boolean> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun CharArray.takeWhileInclusive( | |
predicate: (Char) -> Boolean | |
): List<Char> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun <T> Iterable<T>.takeWhileInclusive( | |
predicate: (T) -> Boolean | |
): List<T> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
// kotlin.sequences | |
fun <T> Sequence<T>.takeWhileInclusive( | |
predicate: (T) -> Boolean | |
): Sequence<T> { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
// kotlin.text | |
inline fun CharSequence.takeWhileInclusive( | |
predicate: (Char) -> Boolean | |
): CharSequence { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} | |
inline fun String.takeWhileInclusive( | |
predicate: (Char) -> Boolean | |
): String { | |
var shouldContinue = true | |
return takeWhile { | |
val result = shouldContinue | |
shouldContinue = predicate(it) | |
result | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment