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