ISet<T>.IsSubsetOf(IEnumerable<T>) Method
Determines whether a set is a subset of a specified collection.
public function IsSubsetOf(const other: IEnumerable<T>): Boolean;
Parameters
- other
- Type: IEnumerable<T>
The collection to compare to the current set.
Return Value
Type: Boolean
True if the current set is a subset of other; otherwise, False.
- Spring.EArgumentNullException
- other is nil.