Copies the specified number of array elements from the specified source array at the given starting position to the named destination array starting at the specified position.
Syntax
arrayCopy( srcArray , srcOffset , dstArray , dstOffset , length )
Parameters
srcArray
|
the array object to copy.
|
srcOffset
|
the starting offset into the source array object.
|
dstArray
|
the array object to copy to.
|
dstOffset
|
the starting offset into the destination array object.
|
length
|
the number of array elements to copy.
|
Returns
Example
arrayCopy( srcAarray, 0, dstArray, 0, len )
|