ArraySlice()

Returns a new array, from the start position up to the count of elements

Usage

ARRAY = ArraySlice( array, index, count )
Argument Summary
array Array Object
index start position
count count - default is to go to the end of the array [optional]

Calling

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

ArraySlice(
   array=?, 
   index=?, 
   count=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArraySlice( ArgumentCollection={
   array : ?, 
   index : ?, 
   count : ?
} );