whereNot method

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

The elements that do not satisfy test.

Implementation

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