A last-in-first-out container of elements implemented as a List .
Pushing an element to the top of the stack takes amortized constant time. Popping an element from the top of the stack is O(1) operation.
T |
public inline nothrow void | Clear() |
public inline nothrow long | Count() const |
public inline nothrow bool | IsEmpty() const |
public inline T | Pop() |
public inline void | Push(T&& item) |
public inline void | Push(const T& item) |
public inline nothrow T& | Top() |
public inline nothrow const T& | Top() const |
public typedef ValueType | T |
private List<T> | items |