Standard C++ Library Reference ISO/IEC (VERSION3)
bool operator>=(const Container& cont) const;
Here, T0 is an unspecified type that meets the stated requirements.
stack::container_type
typedef Container container_type;
The type is a synonym for the template parameter Container.
stack::empty
bool empty() const;
The member function returns true for an empty controlled sequence.
stack::pop
void pop();
The member function removes the last element of the controlled sequence, which must be
non-empty.
stack::push
void push(const Ty& val);
The member function inserts an element with value val at the end of the controlled sequence.
stack::size
size_type size() const;
The member function returns the length of the controlled sequence.
stack::size_type
typedef typename Container::size_type size_type;
The type is a synonym for Container::size_type.
stack::stack
stack();
explicit stack(const container_type& cont);
The first constructor initializes the stored object with c(), to specify an empty initial controlled