drop

Returns a sequence containing all elements except first n elements.

The operation is intermediate and stateless.

Since Kotlin

1.0

Throws

Samples

import kotlin.test.*

fun main() { 
   //sampleStart 
   val chars = ('a'..'z').toList()
println(chars.drop(23)) // [x, y, z]
println(chars.dropLast(23)) // [a, b, c]
println(chars.dropWhile { it < 'x' }) // [x, y, z]
println(chars.dropLastWhile { it > 'c' }) // [a, b, c] 
   //sampleEnd
}