MCPcopy Create free account
hub / github.com/davidgiven/luje / stableStringSort

Method stableStringSort

lib/java/util/Arrays.java:2713–2716  ·  view source on GitHub ↗

Performs a sort on the given String array. Elements will be re-ordered into ascending order. @param arr - the array to sort @param start - the start index @param end - the end index + 1

(String[] arr, int start,
            int end)

Source from the content-addressed store, hash-verified

2711 * the end index + 1
2712 */
2713 private static void stableStringSort(String[] arr, int start,
2714 int end) {
2715 stableStringSort(arr, arr, new String[end], start, end, 0);
2716 }
2717
2718 /**
2719 * Performs a sort on the given String array. Elements will be re-ordered into

Callers 1

sortMethod · 0.95

Calls 5

compareToMethod · 0.95
medCharMethod · 0.95
charAtMethod · 0.95
arraycopyMethod · 0.95
copySwapMethod · 0.95

Tested by

no test coverage detected