sort
Sorts the array in-place.
Samples
kool.buffers.Arrays.Sorting.sortArray
Sorts a range in the array in-place.
Samples
kool.buffers.Arrays.Sorting.sortRangeOfArray
Parameters
fromIndex
the start of the range (inclusive) to sort, 0 by default.
toIndex
the end of the range (exclusive) to sort, size of this array by default.
Throws
if fromIndex is less than zero or toIndex is greater than the size of this array.
if fromIndex is greater than toIndex.