append overloads

Synopses

Declared in <bdlc_packedintarray.h>

Append an element having the specified value to this array.

void
append(ElementType value);

Append all elements from srcArray to this array.

void
append(PackedIntArrayImp const& srcArray);

Append numElements values from srcArray starting at srcIndex.

void
append(
    PackedIntArrayImp const& srcArray,
    std::size_t srcIndex,
    std::size_t numElements);

Parameters

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

Created with MrDocs