[#BloombergLP-bdlc-BitArray-orEqual-076] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/BitArray.adoc[BitArray]::orEqual :relfileprefix: ../../../ :mrdocs: `orEqual` overloads == Synopses Declared in `<bdlc_bitarray.h>` OR the bit at the specified `index` in this array with the specified `value` (retaining the result). The behavior is undefined unless `index < length()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/BitArray/orEqual-0f.adoc[orEqual]( std::size_t index, bool value); ---- [.small]#xref:BloombergLP/bdlc/BitArray/orEqual-0f.adoc[_» more..._]# Bitwise OR the specified `numBits` in this array, beginning at the specified `dstIndex`, with values from the specified `srcArray` beginning at the specified `srcIndex` (retaining the results). The behavior is undefined unless `dstIndex + numBits <= length()` and `srcIndex + numBits <= srcArray.length()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/BitArray/orEqual-07f.adoc[orEqual]( std::size_t dstIndex, xref:BloombergLP/bdlc/BitArray.adoc[BitArray] const& srcArray, std::size_t srcIndex, std::size_t numBits); ---- [.small]#xref:BloombergLP/bdlc/BitArray/orEqual-07f.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#