notElem method

bool notElem(
  1. T element
)

Check if element is not contained inside this Iterable.

Implementation

bool notElem(T element) => !elem(element);