kotlin.sequences.count

count

fun <T> Sequence<T>.count(): Int

Returns the number of elements in this sequence.

inline fun <T> Sequence<T>.count(
    predicate: (T) -> Boolean
): Int

Returns the number of elements matching the given predicate.

© 2010–2017 JetB