Namespaces
Variants
Actions

std::queue<T,Container>::push

From cppreference.com
< cpp‎ | container‎ | queue
 
C++
 
Containers library
 
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)).

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

[edit] See also

(C++11)
constructs element in-place at the end
(public member function) [edit]
removes the first element
(public member function) [edit]

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant