[#bsl-deque-0c-push_front-0e] = xref:bsl.adoc[bsl]::xref:bsl/deque-0c.adoc[deque]::push_front :relfileprefix: ../../ :mrdocs: `push_front` overloads == Synopses Declared in `<bslstl_deque.h>` Prepend to the front of this deque the specified move‐insertable `value`. `value` is left in a valid but unspecified state. If an exception is thrown (other than by the move constructor of a non‐copy‐insertable `value_type`), this method has no effect. This method requires that the (template parameter) `VALUE_TYPE` be `move‐insertable` into this deque (see {Requirements on `VALUE_TYPE`}). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:bsl/deque-0c/push_front-07.adoc[push_front](xref:BloombergLP/bslmf/MovableRef.adoc[BloombergLP::bslmf::MovableRef<value_type>] value); ---- [.small]#xref:bsl/deque-0c/push_front-07.adoc[_» more..._]# Prepend to the front of this deque a copy of the specified `value`. This method offers full guarantee of rollback in case an exception is thrown. This method requires that the (template parameter) `VALUE_TYPE` be `copy‐constructible` (see {Requirements on `VALUE_TYPE`}). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:bsl/deque-0c/push_front-06.adoc[push_front](VALUE_TYPE const& value); ---- [.small]#xref:bsl/deque-0c/push_front-06.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#