any method

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

Implementation

bool any(bool Function(R r) f) => map(f) | false;