Namespaces
Variants
Actions

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

From cppreference.com
< cpp‎ | container‎ | stack
 
 
 
 
void push( const value_type& value );
(1)
void push( value_type&& value );
(2) (since C++11)

Pushes the given element value to the top of the stack.

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)

[