MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / sort

Method sort

ij/src/main/java/ij/util/StringSorter.java:7–12  ·  view source on GitHub ↗

Sorts the array.

(String[] a)

Source from the content-addressed store, hash-verified

5
6 /** Sorts the array. */
7 public static void sort(String[] a) {
8 if (a==null)
9 return;
10 if (!alreadySorted(a))
11 sort(a, 0, a.length - 1);
12 }
13
14 static void sort(String[] a, int from, int to) {
15 int i = from, j = to;

Callers 5

getPluginsMethod · 0.95
processFolderMethod · 0.95
deleteDuplicatesMethod · 0.95
populateNodeMethod · 0.95
sortMethod · 0.95

Calls 2

alreadySortedMethod · 0.95
compareToMethod · 0.45

Tested by

no test coverage detected