コード例 #1
0
 public bool Equals(LimitBase other)
 {
     return(other != null &&
            Upper.NearEqual(other.Upper) &&
            Lower.NearEqual(other.Lower));
 }
コード例 #2
0
 public bool Spliceable(LimitBase b) =>
 Upper.NearEqual(b.Lower) || b.Upper.NearEqual(Lower);