# Functions
AcquireArena returns a pooled arena, which is released to the pool on Free.
Alloc allocates a new object and returns a pointer to it.
New returns an empty non-thread-safe arena.
NewFreeList returns a new free list which allocates objects in the given arena.
NewMutexArena returns a new thread-safe arena which uses a mutex to synchronize access.
No description provided by the author
No description provided by the author
# Type aliases
MutexArena is a thread-safe arena which uses a mutex to synchronize access.