public isSupersetOf(other as HashSetSync<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 s:{1, 2, 3}.isSupersetOf(s:{1, 2})