effect-io-ai

Package: effect
Module: Stream

Stream.dropUntil

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>; }

Source

Since v2.0.0