public bool IsSupersetOf(IEnumerable <T> other) => mySet.IsSupersetOf(other);
public bool IsSupersetOf(IEnumerable <T> other) { return(myBackingSet.IsSupersetOf(other)); }