Example #1
0
 public bool Overlaps(range other)
 {
     return(min <= other.max && other.min <= max);
 }
Example #2
0
 public bool Contains(range other)
 {
     return(min <= other.min && other.max <= max);
 }