Include file:
#include "mcrl2/atermpp/standard_containers/deque.h
atermpp::
deque
¶A deque class in which aterms can be stored.
clear
() noexcept¶deque
()¶Default constructor.
deque
(const allocator_type &alloc)¶Constructor.
deque
(InputIterator first, InputIterator last, const allocator_type &alloc = allocator_type())¶Constructor.
deque
(size_type n, const allocator_type &alloc = allocator_type())¶Constructor.
deque
(size_type n, const value_type &val, const allocator_type &alloc = allocator_type())¶Constructor.
deque
(std::initializer_list<value_type> il, const allocator_type &alloc = allocator_type())¶Constructor.
pop_back
()¶push_back
(const T &value)¶push_back
(T &&value)¶push_front
(const T &value)¶push_front
(T &&value)¶resize
(size_type count)¶resize
(size_type count, const value_type &value)¶shrink_to_fit
()¶size
() const override¶~deque
() = default¶Standard destructor.