Function CSPArray<T>::operator +=()
Description:
Appends the content of an array at the end of the content of this object.
 |
Prototype:
CSPArray<T>& operator +=(const CSPArray<T>& Array);
Arguments:
- const CSPArray<T>& Array [IN]
The array whose content will be added.
Return value:
Returns a reference to this object.
Remarks:
The array will appropriately grow to fit the added data.
See also:
member function Add()
|
|