18 template<
typename T,
typename Container = Deque<T>>
using Stack = std::stack<T, Container>;
Definition Application.hpp:19
std::stack< T, Container > Stack
The Stack class is a container adapter that gives the programmer the functionality of a stack - speci...
Definition Stack.hpp:18
Stack< T, TemporaryDeque< T > > TemporaryStack
A special Stack that uses a fast temporary allocator.
Definition Stack.hpp:21