VecDeque::push_back

push_back overloads

Synopses

Declared in <util/vecdeque.h>

Copy-construct a new element at the end of the deque.

void
push_back(T const& elem);
» more...

Move-construct a new element at the end of the deque.

void
push_back(T&& elem);
» more...

Parameters

NameDescription
elemThe element to copy to the back.