VecDeque::emplace_back

Construct a new element at the end of the deque.

Synopsis

Declared in <util/vecdeque.h>

template<typename... Args>
void
emplace_back(Args&&... args);

Parameters

NameDescription
argsArguments forwarded to the constructor of the new element.