ArrayPrepend()

Inserts the given data at the start of the array or XML object

Usage

BOOLEAN = ArrayPrepend( array, toadd )
Argument Summary
array Array/XML Object
toadd Data to prepend

Calling

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

ArrayPrepend(
   array=?, 
   toadd=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayPrepend( ArgumentCollection={
   array : ?, 
   toadd : ?
} );