removeAll method

void removeAll (Iterable<Object> elements)
override

Removes each element of elements from this set.

Implementation

void removeAll(Iterable<Object> elements) => elements.forEach(remove);