Esempio n. 1
0
 //--------------------------------------------------------------------------------------------------------------------------------
 public bool IsProperSupersetOf(EnumHashSet <T> other)
 {
     return(Raw.IsProperSupersetOf(other.Raw));
 }
Esempio n. 2
0
 //--------------------------------------------------------------------------------------------------------------------------------
 public bool Equals(EnumHashSet <T> rhs)
 {
     return(Raw.Equals(rhs.Raw));
 }
Esempio n. 3
0
 //--------------------------------------------------------------------------------------------------------------------------------
 public void UnionWith(EnumHashSet <T> other)
 {
     Raw.UnionWith(other.Raw);
 }
Esempio n. 4
0
 //--------------------------------------------------------------------------------------------------------------------------------
 public bool IsSubsetOf(EnumHashSet <T> other)
 {
     return(Raw.IsSubsetOf(other.Raw));
 }
Esempio n. 5
0
 //--------------------------------------------------------------------------------------------------------------------------------
 public void SymmetricExceptWith(EnumHashSet <T> other)
 {
     Raw.SymmetricExceptWith(other.Raw);
 }
Esempio n. 6
0
 //--------------------------------------------------------------------------------------------------------------------------------
 public bool SetEquals(EnumHashSet <T> other)
 {
     return(Raw.SetEquals(other.Raw));
 }
Esempio n. 7
0
 //--------------------------------------------------------------------------------------------------------------------------------
 public bool Overlaps(EnumHashSet <T> other)
 {
     return(Raw.Overlaps(other.Raw));
 }
Esempio n. 8
0
 //--------------------------------------------------------------------------------------------------------------------------------
 public void ExceptWith(EnumHashSet <T> other)
 {
     Raw.ExceptWith(other.Raw);
 }
Esempio n. 9
0
 //--------------------------------------------------------------------------------------------------------------------------------
 public void IntersectWith(EnumHashSet <T> other)
 {
     Raw.IntersectWith(other.Raw);
 }