every method

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

Implementation

bool every(bool Function(R r) f) => all(f);