[#BloombergLP-bdlcc-Deque-forcePushFront-0a] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/Deque.adoc[Deque]::forcePushFront :relfileprefix: ../../../ :mrdocs: `forcePushFront` overloads == Synopses Declared in `<bdlcc_deque.h>` Append the specified move‐insertable `item` to the front 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/forcePushFront-0c.adoc[forcePushFront](xref:BloombergLP/bslmf/MovableRef.adoc[bslmf::MovableRef<TYPE>] item); ---- [.small]#xref:BloombergLP/bdlcc/Deque/forcePushFront-0c.adoc[_» more..._]# Append the specified `item` to the front 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/forcePushFront-05.adoc[forcePushFront](TYPE const& item); ---- [.small]#xref:BloombergLP/bdlcc/Deque/forcePushFront-05.adoc[_» more..._]# Append the specified specified range `[begin .. end)]` of items to the front of this container without regard for the high‐water mark. Note that pushed the items will be in the container in the reverse of the order in which they occur in the range. Also 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/forcePushFront-00.adoc[forcePushFront]( INPUT_ITER begin, INPUT_ITER end); ---- [.small]#xref:BloombergLP/bdlcc/Deque/forcePushFront-00.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#