boolAndMonoid function

Monoid<bool> boolAndMonoid()

Implementation

Monoid<bool> boolAndMonoid() => Monoid.instance(true, (a1, a2) => a1 && a2);