Sorts the specified array in ascending numerical order. @param array the byte array to be sorted.
(byte[] array)
| 1639 | * the {@code byte} array to be sorted. |
| 1640 | */ |
| 1641 | public static void sort(byte[] array) { |
| 1642 | sort(0, array.length, array); |
| 1643 | } |
| 1644 | |
| 1645 | /** |
| 1646 | * Sorts the specified range in the array in ascending numerical order. |
no test coverage detected