std::stack<T,Container>::pop (3) - Linux Manuals
std::stack<T,Container>::pop: std::stack<T,Container>::pop
NAME
std::stack<T,Container>::pop - std::stack<T,Container>::pop
Synopsis
void pop();
Removes the top element from the stack. Effectively calls c.pop_back()
Parameters
(none)
Return value
(none)
Complexity
Equal to the complexity of Container::pop_back.
See also
emplace constructs element in-place at the top
(C++11)
push (public member function)
top (public member function)