public void Join(SetDomain <T> other) { if (other.IsTop) { SetTop(); } if (!IsTop) { AddRange(other.Elements); } }
public bool Contains(SetDomain <T> other) { return(Contains(other.Elements)); }