#include <basearray.h>
This selector class is used for template parameters which select the array implementation to use. It will then instruct the template to use the BaseArray implementation. For example, ArrayMap by default uses an underlying BaseArray with default settings. If you want to change those default settings, you'd write
MINCHUNKSIZE | The minimum number of elements upon array creation. |
MEMFLAGS | Use BASEARRAYFLAGS::NONE unless you know the object can be moved and/or copied. |
ALLOCATOR | Class for memory allocation. |
Public Types | |
template<typename T > | |
using | Type = BaseArray< T, MINCHUNKSIZE, MEMFLAGS, ALLOCATOR > |