Expand description
Typed and dropless arena allocation, paraphrased from the Rust Compiler’s rustc_arena
. See LICENSE.
An Arena Allocator is a type of allocator which provides stable locations for allocations within itself for the entire duration of its lifetime.
Modules§
- A DroplessArena can hold any combination of types as long as they don’t implement Drop.
- A TypedArena can hold many instances of a single type, and will properly Drop them.