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);

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

void
push_back(T&& elem);

Parameters

Name

Description

elem

The element to copy to the back.

Created with MrDocs