Ejemplo n.º 1
0
 public abstract Range <T> Intersect(Range <T> other);
Ejemplo n.º 2
0
 public abstract Range <T> Add(Range <T> other);
Ejemplo n.º 3
0
 public virtual Range <T> Subtract(Range <T> other)
 {
     return(Intersect(other.Complement));
 }
Ejemplo n.º 4
0
 public abstract bool OverlapsWith(Range <T> other);
Ejemplo n.º 5
0
 public override Range <T> Intersect(Range <T> other)
 {
     return(other);
 }
Ejemplo n.º 6
0
 public override Range <T> Add(Range <T> other)
 {
     return(this);
 }
Ejemplo n.º 7
0
 public override bool OverlapsWith(Range <T> other)
 {
     return(true);
 }
Ejemplo n.º 8
0
 public override Range <T> Subtract(Range <T> other)
 {
     return(this);
 }