Removes from this set all of its elements that are contained in the specified collection.
Removes from this set all of its elements that are contained in the specified collection.For tree sets this method has a time complexity of O(M * Log N), with N being the size of the set and M being the size of the collection.
For hash sets this method has a complexity of O(M), with M being the size of the collection.