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