Function CSPArray<T>::Add()
Description:
Appends the content of an array at the end of the content of this array.
 |
Prototype:
void Add(const CSPArray<T>& Array);
Arguments:
- const CSPArray<T>& Array [IN]
The array with the data to be added.
Return value:
No return value (void).
Remarks:
The array will appropriately grow to fit the added data.
Examples:
CSPArray<char> A1; CSPArray<char> A2; ... A1.Add( A2 );
See also:
member function operator += (), Copy(), Attach()
|
|