dropWhile

Drop elements as long as a predicate function return true for the element

Simple operators

Signature

def dropWhile(p: Out => Boolean): Repr[Out]

Description

Drop elements as long as a predicate function return true for the element

emits when the predicate returned false and for all following stream elements

backpressures predicate returned false and downstream backpressures

completes when upstream completes

Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.