Constructors
Declared in <util/vecdeque.h>
Construct an empty deque with no allocated buffer.
VecDeque() noexcept = default;
» more...
Copy-construct a deque.
VecDeque(VecDeque const& other);
» more...
Move-construct a deque.
VecDeque(VecDeque&& other) noexcept;
» more...
| Name | Description |
|---|---|
| other | The deque to copy elements from. |