operator - method

Iterable<E> operator -(
  1. Iterable<E> other
)

Returns an Iterable containing all elements of the original collection except the elements contained in the other collection.

Implementation

Iterable<E> operator -(Iterable<E> other) => whereNot(other.contains);