MCPcopy Index your code
hub / github.com/benfry/processing4 / sort

Method sort

core/src/processing/core/PApplet.java:7432–7434  ·  view source on GitHub ↗

Sorts an array of numbers from smallest to largest, or puts an array of words in alphabetical order. The original array is not modified; a re-ordered array is returned. The count parameter states the number of elements to sort. For example, if there are 12 elements in an array and count</b

(byte[] list)

Source from the content-addressed store, hash-verified

7430 * @see PApplet#reverse(boolean[])
7431 */
7432 static public byte[] sort(byte[] list) {
7433 return sort(list, list.length);
7434 }
7435
7436 /**
7437 * @param count number of elements to sort, starting from 0

Callers 4

saveMethod · 0.95
saveMethod · 0.95
listFontsMethod · 0.95
PFontMethod · 0.45

Calls 1

arraycopyMethod · 0.80

Tested by

no test coverage detected