Efficiently sorts this list of integers using Arrays#sort(int[]) .
()
| 186 | * }. |
| 187 | */ |
| 188 | public void sort() |
| 189 | { |
| 190 | Arrays.sort(array, 0, end); |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Creates and returns an unmodifiable view of the given int array that |
no outgoing calls