The Wayback Machine - https://web.archive.org/web/20120527153116/http://en.cppreference.com/w/cpp/container/stack/push

std::stack::push

From cppreference.com
Jump to: navigation, search
void push( const T& value );
void push( T&& 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))

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] See also

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

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages