Allocates the next size bytes from the region and returns a slice to it.
Allocates at least T.sizeof bytes, emplaces a T there, and returns a pointer to it.
Have the calling thread enter the region with a chunks of size chunkSize.
Have the calling thread exit the region, releasing any references to an allocated chunk.
Peek at the current head of the region. This value can be used to check how many bytes have been allocated so far in the current chunk.
Namespace for a static, thread-local, non-nested, unbounded-size allocator.
Memory is allocated bump-the-pointer style within large GC-allocated chunks. A new chunk is allocated when the current one is too full for the next request. Deallocation of chunks is handled by the GC, and destructors are not called.