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

shorten()

Examples
String[] sa1 = { "OH ", "NY ", "CA "}; 
String[] sa2 = shorten(sa1); 
println(sa1);  // 'sa1' still contains OH, NY, CA
println(sa2);  // 'sa2' now contains OH, NY
Description Decreases an array by one element and returns the shortened array.

When using an array of objects, the data returned from the function must be cast to the object array's data type. For example: SomeClass[] items = (SomeClass[]) shorten(originalArray)
Syntax
shorten(list)
Parameters
list Object, String[], float[], int[], char[], byte[], or boolean[]: array to shorten
Returnsboolean[], byte[], char[], int[], float[], String[], or Object
Relatedappend()
expand()
Updated on January 21, 2019 10:05:10am EST

Creative Commons License