[#BloombergLP-bdlc-BitArray-remove-09] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/BitArray.adoc[BitArray]::remove :relfileprefix: ../../../ :mrdocs: `remove` overloads == Synopses Declared in `<bdlc_bitarray.h>` Remove from this array the bit at the specified `index`. All values at indices above `index` in this array are shifted down by one bit position. The length of this array is reduced by 1. The behavior is undefined unless `index < length()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/BitArray/remove-01.adoc[remove](std::size_t index); ---- [.small]#xref:BloombergLP/bdlc/BitArray/remove-01.adoc[_» more..._]# Remove from this array the specified `numBits`, beginning at the specified `index`. All values at indices above `index` in this array are shifted down by `numBits` positions. The length of this array is reduced by `numBits`. The behavior is undefined unless `index + numBits <= length()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/BitArray/remove-0a.adoc[remove]( std::size_t index, std::size_t numBits); ---- [.small]#xref:BloombergLP/bdlc/BitArray/remove-0a.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#