std::queue<T,Container>::push
From cppreference.com
C++
Containers library
(C++17) | ||||
| Sequence | ||||
(C++11) | ||||
(C++26) | ||||
(C++26) | ||||
(C++11) | ||||
| Associative | ||||
| Unordered associative | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
| Adaptors | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
| Views | ||||
(C++20) | ||||
(C++23) | ||||
| Tables | ||||
| Iterator invalidation | ||||
| Member function table | ||||
| Non-member function table |
std::queue| Member functions | ||||
| Element access | ||||
| Capacity | ||||
| Modifiers | ||||
queue::push | ||||
(C++23) | ||||
(C++11) | ||||
(C++11) | ||||
| Non-member functions | ||||
(C++11) | ||||
| Helper classes | ||||
(C++11) | ||||
(C++23) | ||||
| Deduction guides(C++17) |
| void push( const value_type& value ); |
(1) | |
| void push( value_type&& value ); |
(2) | (since C++11) |
Pushes the given element value to the end of the queue.
1) Equivalent to: c.push_back(value).
2) Equivalent to: c.push_back(std::move(value)).
Contents |
[edit] Parameters
| value | - | the value of the element to push |
[edit] Return value
(none)
[edit] Complexity
Equal to the complexity of Container::push_back.
[edit] Example
| This section is incomplete Reason: no example |
[edit] See also
| (C++11) |
constructs element in-place at the end (public member function) [edit] |
| removes the first element (public member function) [edit] |