[#BloombergLP-bdlcc-Deque-forcePushBack-0d] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/Deque.adoc[Deque]::forcePushBack :relfileprefix: ../../../ :mrdocs: `forcePushBack` overloads == Synopses Declared in `<bdlcc_deque.h>` Append the specified move‐insertable `item` to the back of this container without regard for the high‐water mark. `item` is left in a valid but unspecified state. Note that this method is provided to allow high priority items to be inserted when the container is full; `pushFront` and `pushBack` should be used for general use. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/Deque/forcePushBack-04.adoc[forcePushBack](xref:BloombergLP/bslmf/MovableRef.adoc[bslmf::MovableRef<TYPE>] item); ---- [.small]#xref:BloombergLP/bdlcc/Deque/forcePushBack-04.adoc[_» more..._]# Append the specified `item` to the back of this container without regard for the high‐water mark. Note that this method is provided to allow high priority items to be inserted when the container is full; `pushFront` and `pushBack` should be used for general use. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlcc/Deque/forcePushBack-01.adoc[forcePushBack](TYPE const& item); ---- [.small]#xref:BloombergLP/bdlcc/Deque/forcePushBack-01.adoc[_» more..._]# Append the specified specified range `[begin .. end)]` of items to the back of this container without regard for the high‐water mark. Note that the items in the range are treated as `const` objects, copied without being modified. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITER> void xref:BloombergLP/bdlcc/Deque/forcePushBack-0e.adoc[forcePushBack]( INPUT_ITER begin, INPUT_ITER end); ---- [.small]#xref:BloombergLP/bdlcc/Deque/forcePushBack-0e.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#