Crate vec_arena[][src]

A simple object arena.

Arena<T> is basically just a Vec<Option<T>>, which allows you to:

Examples

Some data structures built using Arena<T>:

Structs

Arena

An object arena.

IntoIter

An iterator over the occupied slots in an Arena.

Iter

An iterator over references to the occupied slots in an Arena.

IterMut

An iterator over mutable references to the occupied slots in a Arena.