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