Adjusts this index table to contain the sorted index order for the given array @param array the input to get sorted order of
(double[] array)
| 140 | * @param array the input to get sorted order of |
| 141 | */ |
| 142 | public void sort(double[] array) |
| 143 | { |
| 144 | sort(DoubleList.unmodifiableView(array, array.length)); |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Adjusts this index table to contain the reverse sorted index order for |
no test coverage detected