klyn.collections.HashSet.isSupersetOf
method
public isSupersetOf(other as HashSet<T>) as Boolean:
Description

Returns true when this set contains every element of other.

Parameters
ParameterDescription
otherCandidate subset.
Returns

True when this set is a superset of other.

Example
import klyn.collections

assert {1, 2, 3}.isSupersetOf({1, 2})