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

Method stableStringSort

Ports/CLDC11/src/java/util/Arrays.java:3125–3128  ·  view source on GitHub ↗
(String[] arr, int start,
            int end)

Source from the content-addressed store, hash-verified

3123 /// - `end`: @param end -
3124 /// the end index + 1
3125 private static void stableStringSort(String[] arr, int start,
3126 int end) {
3127 stableStringSort(arr, arr, new String[end], start, end, 0);
3128 }
3129
3130 /// Performs a sort on the given String array. Elements will be re-ordered into
3131 /// ascending order. Uses a stable ternary quick sort algorithm.

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