kotlin.sequences.firstOrNull

firstOrNull

fun <T> Sequence<T>.firstOrNull(): T?

Returns the first element, or null if the sequence is empty.

inline fun <T> Sequence<T>.firstOrNull(
    predicate: (T) -> Boolean
): T?

Returns the first element matching the given predicate, or null if