Allocates the next size bytes from the region and returns a slice to it.
Allocates T.sizeof bytes, emplaces a T there, and returns a pointer to it. Warning: The allocation is NOT automatically padded to ensure proper alignment.
Have the calling thread enter the region with a given size maxBytes.
Have the calling thread exit the region, deallocating the memory. WARNING: Destructors of allocated structs or objects are not called.
Peek at the current head of the region.
Namespace for a static, thread-local, non-nested, bounded-size region allocator.
Memory is allocated bump-the-pointer style within one buffer which must not overflow. Exiting will free the buffer without calling destructors.