drop While
inline fun ByteBuffer.dropWhile(predicate: (Byte) -> Boolean): List<Byte>
Content copied to clipboard
inline fun ShortBuffer.dropWhile(predicate: (Short) -> Boolean): List<Short>
Content copied to clipboard
inline fun LongBuffer.dropWhile(predicate: (Long) -> Boolean): List<Long>
Content copied to clipboard
Returns a list containing all elements except first elements that satisfy the given predicate.
Samples
kool.buffers.Collections.Transformations.drop