( 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[])
| 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 |