ArrayReverse()

Returns a new array, with all the elements reversed

Usage

ARRAY = ArrayReverse( array )
Argument Summary
array Array Object

Calling

Supports named-parameter calling allowing you to use the function like:

ArrayReverse(
   array=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayReverse( ArgumentCollection={
   array : ?
} );