Trove
An arena allocator.
The arena keeps every appended value in a fixed memory location, and only deallocates them all at once.
The arena also allows unsafe mutable access to the stored elements, handle with care!
Example
let arena = new;
let a = arena.append;
let b = arena.append;
assert_eq!;
unsafe
assert_eq!;