std::stack::push

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))

Parameters

value - the value of the element to push

Return value

(none).

Complexity

Equal to the complexity of Container::push_back.

See also

(C++11)
constructs element in-place at the top
(public member function)
removes the top element
(public member function)
doc_CPP
2016-10-11 10:06:51
Comments
Leave a Comment

Please login to continue.