MCPcopy Index your code
hub / github.com/processing/processing / sort

Method sort

core/src/processing/core/PApplet.java:8244–8246  ·  view source on GitHub ↗

( begin auto-generated from sort.xml ) Sorts an array of numbers from smallest to largest and 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

(byte list[])

Source from the content-addressed store, hash-verified

8242 * @see PApplet#reverse(boolean[])
8243 */
8244 static public byte[] sort(byte list[]) {
8245 return sort(list, list.length);
8246 }
8247
8248 /**
8249 * @param count number of elements to sort, starting from 0

Callers 3

saveMethod · 0.95
listFontsMethod · 0.95
PFontMethod · 0.45

Calls 1

arraycopyMethod · 0.80

Tested by

no test coverage detected