filterNotIndexed method

Iterable<E> filterNotIndexed(
  1. bool predicate(
    1. E element,
    2. int index
    )
)

Returns all elements not matching the given predicate.

Implementation

Iterable<E> filterNotIndexed(bool Function(E element, int index) predicate) =>
    whereNotIndexed(predicate);