std::queue<T,Container>::push
From cppreference.com
 
 
 
 
 
 C++ 
 Feature test macros (C++20)
 Concepts library (C++20)
 Metaprogramming library (C++11)
 Ranges library (C++20)
 Filesystem library (C++17)
 Concurrency support library (C++11)
 Execution control library (C++26)
Containers library 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
(C++17)
(C++11)
(C++26)
(C++26)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++23)
(C++23)
(C++23)
(C++23)
(C++20)
(C++23)
 Tables
std::queue 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)).
[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
Reason: no example