removeAll method

ISet<T> removeAll(
  1. Iterable<Object?> elements
)

Removes each element of elements from this set.

Implementation

ISet<T> removeAll(Iterable<Object?> elements) {
  return ISet._unsafeFromSet(unlock..removeAll(elements), config: config);
}