THashSet<T>.ExceptWith(IEnumerable<T>) Method
Removes all elements in the specified collection from the current THashSet<T> object.
public procedure ExceptWith(const other: IEnumerable<T>);
Parameters
- other
- Type: IEnumerable<T>
The collection of items to remove from the THashSet<T> object.
Implements
ISet<T>.ExceptWith(IEnumerable<T>)- Spring.EArgumentNullException
- other is nil.