freelist Class
Visual Studio 2012
Manages a list of memory blocks.
template <std::size_t Sz, class Max> class freelist
: public Max
|
Parameter |
Description |
|---|---|
|
Sz |
The number of elements in the array to be allocated. |
|
Max |
The max class representing the maximum number of elements to be stored in the free list. The max class can be max_none, max_unbounded, max_fixed_size, or max_variable_size. |