Expand description
Arena allocators for efficient compiler data structure allocation.
This crate provides arena allocators that enable fast allocation of compiler data structures with automatic bulk deallocation.
Structs§
- Arena
- A thread-local arena for fast, scoped allocations.
- Bump
- An arena to bump allocate into.
- Dropless
Arena - A dropless arena for types that don’t need drop.
- Sync
Arena - A sync arena that can be shared across threads.
- Typed
Arena - An arena of objects of type
T.