append overloads
Declared in <bdlc_packedintarray.h>
Append an element having the specified value to this array.
void
append(TYPE value);
» more...
Append all values from srcArray to the end of this array.
void
append(PackedIntArray const& srcArray);
» more...
Append numElements values from srcArray starting at srcIndex.
void
append(
PackedIntArray const& srcArray,
std::size_t srcIndex,
std::size_t numElements);
» more...
| Name | Description |
|---|---|
| value | element value to append |
| srcArray | source array to append |
| srcIndex | first index in srcArray to append |
| numElements | number of elements to append |