Checks if this set is a superset of other.
other
Notation: A ⊇ B
Returns true if every element of other is also in this set.
true
bool isSupersetOf(CustomSet<T> other) => other.isSubsetOf(this);