[#VecDeque-push_front-04] = xref:VecDeque.adoc[VecDeque]::push_front :relfileprefix: ../ :mrdocs: `push_front` overloads == Synopses Declared in `<util/vecdeque.h>` Copy‐construct a new element at the beginning of the deque. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:VecDeque/push_front-06.adoc[push_front](T const& elem); ---- [.small]#xref:VecDeque/push_front-06.adoc[_» more..._]# Move‐construct a new element at the beginning of the deque. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:VecDeque/push_front-0e.adoc[push_front](T&& elem); ---- [.small]#xref:VecDeque/push_front-0e.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *elem* | The element to copy to the front. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#