ChunkAllocator.nextFresh

The next element in the fresh chunk. Because we don't worry about the free list in the fresh chunk, we need to keep track of the next fresh element to use.

struct ChunkAllocator(V, uint elemsPerChunk)
uint nextFresh;

Meta