[#BloombergLP-bdlc-PackedIntArray-08-append-02] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/PackedIntArray-08.adoc[PackedIntArray<int>]::append :relfileprefix: ../../../ :mrdocs: `append` overloads == Synopses Declared in `<bdlc_packedintarray.h>` Append an element having the specified `value` to the end of this array. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/PackedIntArray-08/append-04.adoc[append](int value); ---- [.small]#xref:BloombergLP/bdlc/PackedIntArray-08/append-04.adoc[_» more..._]# Append the sequence of values represented by the specified `srcArray` to the end of this array. Note that if this array and `srcArray` are the same, the behavior is as if a copy of `srcArray` were passed. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/PackedIntArray-08/append-0b.adoc[append](xref:BloombergLP/bdlc/PackedIntArray-0b.adoc[PackedIntArray<int>] const& srcArray); ---- [.small]#xref:BloombergLP/bdlc/PackedIntArray-08/append-0b.adoc[_» more..._]# Append the sequence of values of the specified `numElements` starting at the specified `srcIndex` in the specified `srcArray` to the end of this array. The behavior is undefined unless `srcIndex + numElements <= srcArray.length()`. Note that if this array and `srcArray` are the same, the behavior is as if a copy of `srcArray` were passed. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/PackedIntArray-08/append-0a.adoc[append]( xref:BloombergLP/bdlc/PackedIntArray-0b.adoc[PackedIntArray<int>] const& srcArray, std::size_t srcIndex, std::size_t numElements); ---- [.small]#xref:BloombergLP/bdlc/PackedIntArray-08/append-0a.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#