Exemple #1
0
 public bool IsDisjointFrom(HashedSet <T> other)
 {
     return(!this.Overlaps(other));
 }
Exemple #2
0
 public bool IsSubsetOf(HashedSet <T> other)
 {
     return(other.IsSupersetOf(this));
 }