CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
Stack.hpp File Reference
#include "Deque.hpp"
#include <stack>

Go to the source code of this file.

Namespaces

namespace  CeresEngine
 

Typedefs

template<typename T , typename Container = Deque<T>>
using CeresEngine::Stack = std::stack< T, Container >
 The Stack class is a container adapter that gives the programmer the functionality of a stack - specifically, a LIFO (last-in, first-out) data structure.
 
template<typename T >
using CeresEngine::TemporaryStack = Stack< T, TemporaryDeque< T > >
 A special Stack that uses a fast temporary allocator.