filterNotToIndexed method

void filterNotToIndexed(
  1. List<E> destination,
  2. bool predicate(
    1. E element,
    2. int index
    )
)

Appends all elements not matching the given predicate to the given destination.

Implementation

void filterNotToIndexed(
        List<E> destination, bool Function(E element, int index) predicate) =>
    whereNotToIndexed(destination, predicate);