THashSet<T>.IsSupersetOf(IEnumerable<T>) Method

Determines whether a THashSet<T> object is a superset of the specified collection.

Namespace: Spring.Collections.Sets
public
 function IsSupersetOf(const other: IEnumerable<T>): Boolean;

Parameters

other
Type: IEnumerable<T>

The collection to compare to the current THashSet<T> object.

Return Value

Type: Boolean

True if the THashSet<T> object is a superset of other; otherwise, False.

Implements

ISet<T>.IsSupersetOf(IEnumerable<T>)