drop

fun <T> Array<out T>.drop(n: Int): List<T>(source)
fun <T> Iterable<T>.drop(n: Int): List<T>(source)

Returns a list containing all elements except first n elements.

Since Kotlin

1.0

Throws

Samples


Returns a list containing all elements except first n elements.

Since Kotlin

1.3

Throws

Samples