none method

bool none(
  1. bool predicate(
    1. T element
    )
)

Returns true if no entries match the given predicate or if the collection is empty.

Implementation

bool none(bool predicate(T element)) => !any(predicate);