# `typed-arena-nomut` [![](https://docs.rs/typed-arena-nomut/badge.svg)](https://docs.rs/typed-arena-nomut/) [![](https://img.shields.io/crates/v/typed-arena-nomut.svg)](https://crates.io/crates/typed-arena-nomut) [![](https://img.shields.io/crates/d/typed-arena-nomut.svg)](https://crates.io/crates/typed-arena-nomut) This is a fork of the typed-arena arena crate that returns an immutable reference instead of mutable one. This allows iteration on the arena items while they're borrowed. **A fast (but limited) allocation arena for values of a single type.** Allocated objects are destroyed all at once, when the arena itself is destroyed. There is no deallocation of individual objects while the arena itself is still alive. The flipside is that allocation is fast: typically just a vector push. There is also a method `into_vec()` to recover ownership of allocated objects when the arena is no longer required, instead of destroying everything. ## Example ```rust use typed_arena_nomut::Arena; struct Monster { level: u32, } let monsters = Arena::new(); let goku = monsters.alloc(Monster { level: 9001 }); assert!(goku.level > 9000); ``` ## Safe Cycles All allocated objects get the same lifetime, so you can safely create cycles between them. This can be useful for certain data structures, such as graphs and trees with parent pointers. ```rust use std::cell::Cell; use typed_arena_nomut::Arena; struct CycleParticipant<'a> { other: Cell>>, } let arena = Arena::new(); let a = arena.alloc(CycleParticipant { other: Cell::new(None) }); let b = arena.alloc(CycleParticipant { other: Cell::new(None) }); a.other.set(Some(b)); b.other.set(Some(a)); ``` ## Alternatives ### Need to allocate many different types of values? Use multiple arenas if you have only a couple different types or try [`bumpalo`](https://crates.io/crates/bumpalo), which is a bump-allocation arena can allocate heterogenous types of values. ### Want allocation to return identifiers instead of references and dealing with references and lifetimes everywhere? Check out [`id-arena`](https://crates.io/crates/id-arena) or [`generational-arena`](https://crates.io/crates/generational-arena). ### Need to deallocate individual objects at a time? Check out [`generational-arena`](https://crates.io/crates/generational-arena) for an arena-style crate or look for a more traditional allocator.