all method

bool all(
  1. F fa,
  2. bool f(
    1. dynamic a
    )
)

Implementation

bool all(F fa, bool f(a)) => foldMap(BoolAndMi, fa, f);