This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.
| Name | reverse() |
||
|---|---|---|---|
| Examples |
String sa[] = { "OH", "NY", "MA", "CA"};
sa = reverse(sa);
println(sa);
// Prints updated array contents to the console:
// [0] "CA"
// [1] "MA"
// [2] "NY"
// [3] "OH"
| ||
| Description | Reverses the order of an array. | ||
| Syntax | reverse(list) | ||
| Parameters |
| ||
| Returns | boolean[], byte[], char[], int[], float[], String[], or Object | ||
| Related | sort() |

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.