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

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

Namespace: Spring.Collections.Sets
public
 function IsSubsetOf(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 subset of other; otherwise, False.

Implements

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