every method

bool every(
  1. bool f(
    1. A a
    )
)

Implementation

bool every(bool f(A a)) => all(f);