Package: effect
Module: Boolean
Reducer for combining booleans using AND.
When to use
Use to require every accumulated boolean to be true through APIs that
consume a Reducer.
Details
The initialValue is true, so combineAll([]) returns true.
Gotchas
combineAll uses the default left-to-right Reducer.make fold and does not
short-circuit on false.
See
ReducerOr for reducing with OR semanticsevery for checking an iterable directlySignature
declare const ReducerAnd: Reducer.Reducer<boolean>
Since v4.0.0