//-------------------------------------------------------------------------------------------------------------------------------- public bool IsProperSupersetOf(EnumHashSet <T> other) { return(Raw.IsProperSupersetOf(other.Raw)); }
//-------------------------------------------------------------------------------------------------------------------------------- public bool Equals(EnumHashSet <T> rhs) { return(Raw.Equals(rhs.Raw)); }
//-------------------------------------------------------------------------------------------------------------------------------- public void UnionWith(EnumHashSet <T> other) { Raw.UnionWith(other.Raw); }
//-------------------------------------------------------------------------------------------------------------------------------- public bool IsSubsetOf(EnumHashSet <T> other) { return(Raw.IsSubsetOf(other.Raw)); }
//-------------------------------------------------------------------------------------------------------------------------------- public void SymmetricExceptWith(EnumHashSet <T> other) { Raw.SymmetricExceptWith(other.Raw); }
//-------------------------------------------------------------------------------------------------------------------------------- public bool SetEquals(EnumHashSet <T> other) { return(Raw.SetEquals(other.Raw)); }
//-------------------------------------------------------------------------------------------------------------------------------- public bool Overlaps(EnumHashSet <T> other) { return(Raw.Overlaps(other.Raw)); }
//-------------------------------------------------------------------------------------------------------------------------------- public void ExceptWith(EnumHashSet <T> other) { Raw.ExceptWith(other.Raw); }
//-------------------------------------------------------------------------------------------------------------------------------- public void IntersectWith(EnumHashSet <T> other) { Raw.IntersectWith(other.Raw); }