Methods in jal.DOUBLE that return Range |
static Range |
Sorting.equal_range(double[] array,
int first,
int last,
double x)
Performs a binary search on an already-sorted range:
Finds the largest subrange in the supplied range such that an
element can be inserted at any point in that subrange without violating
the existing ordering. |
static Range |
Sorting.equal_range(double[] array,
int first,
int last,
double x,
BinaryPredicate comp)
Performs a binary search on an already-sorted range:
Finds the largest subrange in the supplied range such that an
element can be inserted at any point in that subrange without violating
the existing ordering. |