Constructors

Synopses

Declared in <util/vecdeque.h>

Construct an empty deque with no allocated buffer.

VecDeque() noexcept = default;

Copy‐construct a deque.

VecDeque(VecDeque const& other);

Move‐construct a deque.

VecDeque(VecDeque&& other) noexcept;

Parameters

Name

Description

other

The deque to copy elements from.

Created with MrDocs