[#BloombergLP-bdlc-CompactedArray-remove-00] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/CompactedArray.adoc[CompactedArray]::remove :relfileprefix: ../../../ :mrdocs: `remove` overloads == Synopses Declared in `<bdlc_compactedarray.h>` Remove from this array the element at the specified `dstIndex`. Each element having an index greater than `dstIndex` before the removal is shifted down by one index position. The behavior is undefined unless `dstIndex < length()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/CompactedArray/remove-05.adoc[remove](std::size_t dstIndex); ---- [.small]#xref:BloombergLP/bdlc/CompactedArray/remove-05.adoc[_» more..._]# Remove from this array the elements starting at the specified `dstFirst` iterator up to, but not including, the specified `dstLast` iterator. Each element at or above `dstLast` before the removal is shifted down by `dstLast ‐ dstFirst` index positions. Return an iterator to the new position of the element that was referred to by `dstLast`, or `end()` if `dstLast == end()`. The behavior is undefined unless `dstFirst` and `dstLast` are iterators over this array, and `dstFirst <= dstLast`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlc/CompactedArray/const_iterator.adoc[CompactedArray<TYPE>::const_iterator] xref:BloombergLP/bdlc/CompactedArray/remove-0d.adoc[remove]( xref:BloombergLP/bdlc/CompactedArray/const_iterator.adoc[const_iterator] dstFirst, xref:BloombergLP/bdlc/CompactedArray/const_iterator.adoc[const_iterator] dstLast); ---- [.small]#xref:BloombergLP/bdlc/CompactedArray/remove-0d.adoc[_» more..._]# Remove from this array the specified `numElements` starting at the specified `dstIndex`. Each element having an index greater than or equal to `dstIndex + numElements` before the removal is shifted down by `numElements` index positions. The behavior is undefined unless `dstIndex + numElements <= length()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/CompactedArray/remove-09.adoc[remove]( std::size_t dstIndex, std::size_t numElements); ---- [.small]#xref:BloombergLP/bdlc/CompactedArray/remove-09.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#