whereNotIndexed method Null safety

Iterable<E> whereNotIndexed(
  1. IndexedPredicate<E> test
)

Returns a new lazy Iterable with all elements that does NOT satisfy the predicate test, providing sequential index of the element.

Implementation

Iterable<E> whereNotIndexed(IndexedPredicate<E> test) =>
    whereIndexed((i, e) => !test(i, e));