remove All
Removes, from an iterable, every element that belongs to the provided collection.
This method calls MutableCollection.removeAll if this is a collection, and Iterators.removeAll otherwise.
Return
true if any element was removed from this
See also
Parameters
elements To Remove
the elements to remove
Traverses an iterator and removes every element that belongs to the provided collection. The iterator will be left exhausted: its hasNext method will return false.
Return
true if any element was removed from this
See also
Parameters
elements To Remove
the elements to remove