THashSet<T>.UnionWith(IEnumerable<T>) Method
Modifies the current THashSet<T> object to contain all elements that are present in itself, the specified collection, or both.
public procedure UnionWith(const other: IEnumerable<T>);
Parameters
- other
- Type: IEnumerable<T>
The collection to compare to the current THashSet<T> object.
Implements
ISet<T>.UnionWith(IEnumerable<T>)- Spring.EArgumentNullException
- other is nil.