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