kool
/
kool.lib
/
drop
drop
fun
ByteBuffer
.
drop
(n:
Int
):
List
<
Byte
>
Content copied to clipboard
fun
ShortBuffer
.
drop
(n:
Int
):
List
<
Short
>
Content copied to clipboard
fun
IntBuffer
.
drop
(n:
Int
):
List
<
Int
>
Content copied to clipboard
fun
LongBuffer
.
drop
(n:
Int
):
List
<
Long
>
Content copied to clipboard
fun
FloatBuffer
.
drop
(n:
Int
):
List
<
Float
>
Content copied to clipboard
fun
DoubleBuffer
.
drop
(n:
Int
):
List
<
Double
>
Content copied to clipboard
fun
CharBuffer
.
drop
(n:
Int
):
List
<
Char
>
Content copied to clipboard
Returns a list containing all elements except first
n
elements.
Samples
kool.buffers.Collections.Transformations.drop