ISet<T>.IsSupersetOf(IEnumerable<T>) Method
Determines whether the current set is a superset of a specified collection.
public function IsSupersetOf(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 superset of other; otherwise, False.
- Spring.EArgumentNullException
- other is nil.