Reference+
Name
shorten()
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).
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
Syntax
- shorten(list)
Parameters
- list- (boolean[], byte[], char[], int[], float[], String[], Object)array to shorten
Return
- boolean[], byte[], char[], int[], float[], String[], or Object

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