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