Example #1
0
 public bool Intersects(RangeInt other)
 {
     return((other.Min < _max && _max < other.Max) || (other.Min < _min && _min < other.Max) || (_min < other.Min && other.Min < _max) || (_min == other.Min && _max == other.Max));
 }