operator - method

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

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

Implementation

Set<E> operator -(Iterable<E> other) => difference(other.toSet());