GrowAllocator

Allocator to use for objects with infinite lifetime, which will never be freed.

alias GrowAllocator = AllocatorList!(
(
n
)
=> Region!MmapAllocator(max(n, 1024 * 4096))
, NullAllocator)

Meta