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