12#include <forward_list>
21 template<
typename T,
typename RawAllocator = DefaultAllocator>
using List = std::list<T, ScopedAllocatorAdaptor<StdAllocator<T, RawAllocator>>>;
32 template<
typename T,
typename RawAllocator = DefaultAllocator>
33 using ForwardList = std::forward_list<T, ScopedAllocatorAdaptor<StdAllocator<T, RawAllocator>>>;
Definition Application.hpp:19
std::list< T, ScopedAllocatorAdaptor< StdAllocator< T, RawAllocator > > > List
List is a container that supports constant time insertion and removal of elements from anywhere in th...
Definition List.hpp:21
ForwardList< T, TemporaryAllocator > TemporaryForwardList
A special ForwardList that uses a fast temporary allocator.
Definition List.hpp:36
List< T, TemporaryAllocator > TemporaryList
A special List that uses a fast temporary allocator.
Definition List.hpp:24
std::forward_list< T, ScopedAllocatorAdaptor< StdAllocator< T, RawAllocator > > > ForwardList
ForwardList is a container that supports fast insertion and removal of elements from anywhere in the ...
Definition List.hpp:33