[#BloombergLP-bdlc-BitArray-append-0b] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/BitArray.adoc[BitArray]::append :relfileprefix: ../../../ :mrdocs: `append` overloads == Synopses Declared in `<bdlc_bitarray.h>` Append to this array the specified `value`. Note that this method has the same behavior as: ` insert(length(), value); ` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/BitArray/append-06b.adoc[append](bool value); ---- [.small]#xref:BloombergLP/bdlc/BitArray/append-06b.adoc[_» more..._]# Append to this array the values from the specified `srcArray`. Note that this method has the same behavior as: ` insert(length(), srcArray); ` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/BitArray/append-02.adoc[append](xref:BloombergLP/bdlc/BitArray.adoc[BitArray] const& srcArray); ---- [.small]#xref:BloombergLP/bdlc/BitArray/append-02.adoc[_» more..._]# Append to this array the specified `numBits` having the specified `value`. Note that this method has the same behavior as: ` insert(length(), value, numBits); ` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/BitArray/append-08.adoc[append]( bool value, std::size_t numBits); ---- [.small]#xref:BloombergLP/bdlc/BitArray/append-08.adoc[_» more..._]# Append to this array the specified `numBits` from the specified `srcArray`, beginning at the specified `srcIndex`. The behavior is undefined unless `srcIndex + numBits <= srcArray.length()`. Note that this method has the same behavior as: ` insert(length(), srcArray, srcIndex, numBits); ` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/BitArray/append-064.adoc[append]( xref:BloombergLP/bdlc/BitArray.adoc[BitArray] const& srcArray, std::size_t srcIndex, std::size_t numBits); ---- [.small]#xref:BloombergLP/bdlc/BitArray/append-064.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#