[#BloombergLP-bdlc-CompactedArray-append-08] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/CompactedArray.adoc[CompactedArray]::append :relfileprefix: ../../../ :mrdocs: `append` overloads == Synopses Declared in `<bdlc_compactedarray.h>` Append to this array the elements from the specified `srcArray`. 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/CompactedArray/append-0643.adoc[append](xref:BloombergLP/bdlc/CompactedArray.adoc[CompactedArray] const& srcArray); ---- [.small]#xref:BloombergLP/bdlc/CompactedArray/append-0643.adoc[_» more..._]# Append to this array an element having the specified `value`. Note that this method is logically equivalent to: ` push_back(value); ` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/CompactedArray/append-064f.adoc[append](TYPE const& value); ---- [.small]#xref:BloombergLP/bdlc/CompactedArray/append-064f.adoc[_» more..._]# Append to this array the specified `numElements` starting at the specified `srcIndex` in the specified `srcArray`. 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/CompactedArray/append-06e.adoc[append]( xref:BloombergLP/bdlc/CompactedArray.adoc[CompactedArray] const& srcArray, std::size_t srcIndex, std::size_t numElements); ---- [.small]#xref:BloombergLP/bdlc/CompactedArray/append-06e.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#