take Last While
inline fun ByteBuffer.takeLastWhile(predicate: (Byte) -> Boolean): List<Byte>
Content copied to clipboard
inline fun ShortBuffer.takeLastWhile(predicate: (Short) -> Boolean): List<Short>
Content copied to clipboard
inline fun IntBuffer.takeLastWhile(predicate: (Int) -> Boolean): List<Int>
Content copied to clipboard
inline fun LongBuffer.takeLastWhile(predicate: (Long) -> Boolean): List<Long>
Content copied to clipboard
inline fun FloatBuffer.takeLastWhile(predicate: (Float) -> Boolean): List<Float>
Content copied to clipboard
inline fun DoubleBuffer.takeLastWhile(predicate: (Double) -> Boolean): List<Double>
Content copied to clipboard
inline fun CharBuffer.takeLastWhile(predicate: (Char) -> Boolean): List<Char>
Content copied to clipboard
Returns a list containing last elements satisfying the given predicate.