noneMatch abstract method

bool noneMatch(
  1. bool predicate(
    1. int
    )
)

Returns true if no elements match the predicate.

Example

final noNegative = IntStream.range(1, 5)
    .noneMatch((n) => n < 0); // true

Implementation

bool noneMatch(bool Function(int) predicate);