any method

bool any(
  1. bool test(
    1. E element
    )
)

Implementation

bool any(bool Function(E element) test) => value.any(test);