Sorts the specified array in ascending numerical order. @param array the byte array to be sorted.
(byte[] array)
| 1874 | * the {@code byte} array to be sorted. |
| 1875 | */ |
| 1876 | public static void sort(byte[] array) { |
| 1877 | sort(0, array.length, array); |
| 1878 | } |
| 1879 | |
| 1880 | /** |
| 1881 | * Sorts the specified range in the array in ascending numerical order. |