all method

bool all(
  1. bool f(
    1. R r
    )
)

Implementation

bool all(bool Function(R r) f) => map(f) | true;