Defines ChunkedVec, a grow-only buffer that allocates fixed chunks of memory, so as to avoid costly realloc calls with large sizes.
ChunkedVec can only grow. ChunkedVec has one indirection when indexing. ChunkedVec has a fixed-sized allocations list.
See Source File
Boost License 1.0
Guillaume Piolat 2021.
Defines ChunkedVec, a grow-only buffer that allocates fixed chunks of memory, so as to avoid costly realloc calls with large sizes.