[#BloombergLP-bdlcc-Deque-forcePushFront-00] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/Deque.adoc[Deque]::forcePushFront :relfileprefix: ../../../ :mrdocs: Append `[begin .. end)]` to the front, ignoring the high‐water mark. == Synopsis Declared in `<bdlcc_deque.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITER> void forcePushFront( INPUT_ITER begin, INPUT_ITER end); ---- == Description Append the specified range `[begin .. end)]` of items to the front of this container without regard for the high‐water mark. Note that the pushed 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. == Parameters [cols="1,4"] |=== | Name| Description | *begin* | beginning of the input range | *end* | end of the input range |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#