whereNot method

Iterable<E> whereNot(
  1. bool test(
    1. E element
    )
)

Returns an Iterable containing all elements not passing the given test.

Implementation

Iterable<E> whereNot(bool Function(E element) test) =>
    where((element) => !test(element));