arrow-fx-coroutines / arrow.fx.coroutines.stream / dropThrough
fun <O> Pull<O, Unit>.dropThrough(p: (O) -> Boolean): Pull<O, Unit>
fun <O>
Pull
<O,
Unit
>.dropThrough(p: (O) ->
Boolean
):
>
Like dropWhile, but drops the first value which tests false.
Do you like Arrow?