VecDeque::emplace_front

Construct a new element at the beginning of the deque.

Synopsis

Declared in <util/vecdeque.h>

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

Parameters

NameDescription
argsArguments forwarded to the constructor of the new element.