Function CSPArray<T>::Attach()
Description:
Attaches data from another array to this array.
 |
Prototype:
void Attach(const CSPArray<T>& Array);
Arguments:
- const CSPArray<T>& Array [IN]
The array with the data to be attached.
Return value:
No return value (void).
Remarks:
Any data contained by this object is discarded. Also, this object takes ownership of the memory in Array, emptying the latter. This is the fastest way to copy data between two CSPArray<T> objects.
See also:
member functions Copy(), Add()
|
|