Drops elements that do not meet the predicate f. Streaming result: works with endless iterables.
f
dropWhile([1, 2, 3, 4], e => e < 3);returns [3, 4] Copy
dropWhile([1, 2, 3, 4], e => e < 3);returns [3, 4]
Drops elements that do not meet the predicate
f
. Streaming result: works with endless iterables.Param: it
Param: f