filterNot method

Iterable<E> filterNot(
  1. bool predicate(
    1. E element
    )
)

Returns all elements not matching the given predicate.

Implementation

Iterable<E> filterNot(bool Function(E element) predicate) =>
    whereNot(predicate);