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