insert2 method

void insert2(
  1. double x1,
  2. double x2,
  3. T item
)

Implementation

void insert2(double x1, double x2, T item) {
  super.insert(Interval(Math.minD(x1, x2), Math.maxD(x1, x2)), item);
}