whereNot method

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

Implementation

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