noneMatch method

bool noneMatch(
  1. ConditionTester<T> test
)

Checks if none of the elements match a condition using noneMatch.

Implementation

bool noneMatch(ConditionTester<T> test) => none(test);