Package: effect
Module: Stream
Drops all elements of the stream until the specified predicate evaluates to
true.
Signature
declare const dropUntil: { <A>(predicate: Predicate<NoInfer<A>>): <E, R>(self: Stream<A, E, R>) => Stream<A, E, R>; <A, E, R>(self: Stream<A, E, R>, predicate: Predicate<A>): Stream<A, E, R>; }
Since v2.0.0