std::stack<T,Container>::push (3) - Linux Manuals

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

NAME

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

Synopsis


void push( const value_type& value );
void push( value_type&& value ); (since C++11)


Pushes the given element value to the top of the stack.
1) Effectively calls c.push_back(value)
2) Effectively calls c.push_back(std::move(value))

Parameters


value - the value of the element to push

Return value


(none)

Complexity


Equal to the complexity of Container::push_back.

See also


emplace constructs element in-place at the top
        (public member function)
(C++11)
        removes the top element
pop (public member function)