takeWhile

fun <T> Flow<T>.takeWhile(predicate: suspend (T) -> Boolean): Flow<T>

Returns a flow that contains first elements satisfying the given predicate.

Note, that the resulting flow does not contain the element on which the predicate returned false. See transformWhile for a more flexible operator.

Sources

Link copied to clipboard