rustc-ap-arena 644.0.0

Automatically published version of the package `arena` in the rust-lang/rust repository from commit 0176a9eef845e7421b7e2f7ef015333a41a7c027 The publishing script for this crate lives at: https://github.com/alexcrichton/rustc-auto-publish
Documentation

The arena, a fast but limited type of allocator.

Arenas are a type of allocator that destroy the objects within, all at once, once the arena itself is destroyed. They do not support deallocation of individual objects while the arena itself is still alive. The benefit of an arena is very fast allocation; just a pointer bump.

This crate implements TypedArena, a simple arena that can only hold objects of a single type.