MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / stableStringSort

Method stableStringSort

vm/JavaAPI/src/java/util/Arrays.java:2950–2953  ·  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

2948 * the end index + 1
2949 */
2950 private static void stableStringSort(String[] arr, int start,
2951 int end) {
2952 stableStringSort(arr, arr, new String[end], start, end, 0);
2953 }
2954
2955 /**
2956 * 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