filterNotIndexed method

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

Returns all elements not matching the given predicate.

Implementation

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