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