Package: effect
Module: Sink
A sink that returns whether an element satisfies the specified predicate.
When to use
Use to reduce a stream to a boolean that is true when any input satisfies a pure predicate.
See
every for the all-match checkSignature
declare const some: <In>(predicate: Predicate<In>) => Sink<boolean, In, In>
Since v2.0.0