ArrayRest()

Returns a new array, minus the first element

Usage

ARRAY = ArrayRest( array )
Argument Summary
array Array Object

Calling

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

ArrayRest(
   array=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayRest( ArgumentCollection={
   array : ?
} );