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