memory
|
Tag type defining a memory pool optimized for arrays.
It keeps the nodes ordered inside the free list and searches the list for an appropriate memory block. Array allocations are still pretty slow, if the array gets big enough it can get slower than new
. Node allocations are still fast, unless there is deallocation in random order.
Typedefs | |
using | type = detail::array_free_memory_list |