push_front overloads
Declared in <util/vecdeque.h>
Copy-construct a new element at the beginning of the deque.
void
push_front(T const& elem);
» more...
Move-construct a new element at the beginning of the deque.
void
push_front(T&& elem);
» more...
| Name | Description |
|---|---|
| elem | The element to copy to the front. |