Returns a Stream skipping elements while the predicate is true, then includes all remaining elements.
Example:
var dropped = stream.dropWhile ((x) => { return x < 3; });
| fn |
the predicate. |
|
a new Stream without the leading matching elements. |