Function CSPArray<T>::operator =()
Description:
Copies the content of a array to this one.
 |
Prototype:
CSPArray<T>& operator =(const CSPArray<T>& Array);
Arguments:
- const CSPArray<T>& Array [IN]
The array to be copied.
Return value:
Returns a reference to this object.
Remarks:
Any data contained in this object will be discarded and the array will be resized appropriately to fit the copied data.
See also:
member function Copy()
|
|