Copies the elements of the specified vector object into the given array object.
Syntax
copyInto( vector , array )
vector.copyInto( array )
Parameters
vector
|
the vector object to copy.
|
array
|
the array object to copy into.
|
Returns
Example
v = v.copyInto( a )
|