public bool Equals(LimitBase other) { return(other != null && Upper.NearEqual(other.Upper) && Lower.NearEqual(other.Lower)); }
public bool Spliceable(LimitBase b) => Upper.NearEqual(b.Lower) || b.Upper.NearEqual(Lower);