whereNot method

Iterable<T> whereNot(
  1. Predicate<T> test
)

Returns an Iterable with all elements that doest NOT satisfy the predicate test.

Implementation

Iterable<T> whereNot(Predicate<T> test) => _l.where((e) => !test(e));