C++
AcArray<T,R>& append( const AcArray<T,R>& otherArray );
Description
This function appends the otherArray to the end of this array. The logical length of this array will increase by the length of the otherArray. If the physical length is not long enough, it will increase by the amount necessary to fit the newly added elements (with the usual caveat about insufficient memory, as described in the Overview).
Parameters
Parameters | Description |
---|---|
otherArray | Input another array of the same type to be appended to this array |