Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/container/queue/push"

From cppreference.com
< cpp‎ | container‎ | queue
m (Add link to edit the included template)
Line 1: Line 1:
{{cpp/container/push|queue}}
+
{{page template|cpp/container/push|queue}}
  
 
[[it:cpp/container/queue/push]]
 
[[it:cpp/container/queue/push]]
 
[[pl:cpp/container/queue/push]]
 
[[pl:cpp/container/queue/push]]
 
[[ru:cpp/container/queue/push]]
 
[[ru:cpp/container/queue/push]]

Revision as of 07:49, 14 October 2012

 
 
 
 
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

Parameters

value - the value of the element to push

Return value

(none)

Complexity

Equal to the complexity of Container::push_back.

Example

See also

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