public isSupersetOf(other as HashSet<T>) as Boolean:
Returns true when this set contains every element of other.
| Parameter | Description |
|---|---|
other | Candidate subset. |
True when this set is a superset of other.
import klyn.collections
assert {1, 2, 3}.isSupersetOf({1, 2})