[#BloombergLP-bdlc-Queue-remove-0f] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/Queue.adoc[Queue]::remove :relfileprefix: ../../../ :mrdocs: `remove` overloads == Synopses Declared in `<bdlc_queue.h>` Remove from this queue the value at the specified `index`. All values with initial indices above `index` are shifted down by one index position. The behavior is undefined unless `0 <= index < length()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/Queue/remove-08.adoc[remove](int index); ---- [.small]#xref:BloombergLP/bdlc/Queue/remove-08.adoc[_» more..._]# Remove from this queue, beginning at the specified `index`, the specified `numElements` values. All values with initial indices at or above `index + numElements` are shifted down by `numElements` index positions. The behavior is undefined unless `0 <= index`, `0 <= numElements`, and `index + numElements <= length()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlc/Queue/remove-03.adoc[remove]( int index, int numElements); ---- [.small]#xref:BloombergLP/bdlc/Queue/remove-03.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#