first

fun <T> Sequence<T>.first(): T(source)

Returns first element.

Since Kotlin

1.0

Throws

if the sequence is empty.

The operation is terminal.


inline fun <T> Sequence<T>.first(predicate: (T) -> Boolean): T(source)

Returns the first element matching the given predicate.

Since Kotlin

1.0

Throws

if no such element is found.

The operation is terminal.