Array list. More...
#include <ArrayList.hpp>
Public Types | |
using | size_type = SIZE_TYPE |
Size type. | |
using | value_type = VALUE_TYPE |
Value type. | |
using | reference = value_type & |
Reference type. | |
using | const_reference = const value_type & |
Constant reference type. | |
using | pointer = value_type * |
Pointer type. | |
using | const_pointer = const value_type * |
Constant pointer type. | |
Array list.
This is a std::array
backed std::vector
like container. It provides vector like behavior whose max size is capped at the size given by the template max size parameter without using dynamic storage.