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
list Object, String[], float[], int[], char[], byte[], or boolean[]: booleans[], bytes[], chars[], ints[], floats[], or Strings[]
Returnsboolean[], byte[], char[], int[], float[], String[], or Object
Relatedsort()
Updated on January 21, 2019 10:05:10am EST

Creative Commons License