20 template<
typename T,
typename RawAllocator = DefaultAllocator>
using Deque = std::deque<T, ScopedAllocatorAdaptor<StdAllocator<T, RawAllocator>>>;
Definition Application.hpp:19
std::deque< T, ScopedAllocatorAdaptor< StdAllocator< T, RawAllocator > > > Deque
Deque (double-ended queue) is an indexed sequence container that allows fast insertion and deletion a...
Definition Deque.hpp:20
Deque< T, TemporaryAllocator > TemporaryDeque
A special Deque that uses a fast temporary allocator.
Definition Deque.hpp:23