drop

fun ByteBuffer.drop(n: Int): List<Byte>
fun ShortBuffer.drop(n: Int): List<Short>
fun IntBuffer.drop(n: Int): List<Int>
fun LongBuffer.drop(n: Int): List<Long>
fun FloatBuffer.drop(n: Int): List<Float>
fun DoubleBuffer.drop(n: Int): List<Double>
fun CharBuffer.drop(n: Int): List<Char>

Returns a list containing all elements except first n elements.

Samples

kool.buffers.Collections.Transformations.drop