filterNotToIndexed method
Appends all elements not matching the given predicate to the given
destination.
Implementation
void filterNotToIndexed(List<T> destination, bool predicate(T element, int index)) =>
whereNotToIndexed(destination, predicate);