1 unstable release

0.1.0 Feb 16, 2024

#478 in Memory management

Download history 141/week @ 2024-02-16 20/week @ 2024-02-23 4/week @ 2024-03-01 5/week @ 2024-03-08 2/week @ 2024-03-15 14/week @ 2024-03-29 5/week @ 2024-04-05 12/week @ 2024-04-12 1/week @ 2024-04-26 84/week @ 2024-05-03

97 downloads per month
Used in foundation-urtypes

GPL-3.0-or-later

6KB
78 lines

Foundation Arena.

This crate provides an alternative to the typed_arena crate that does not use the heap. Instead, the Arena type statically allocates memory at compile-time by passing the N type parameter.

Examples

use foundation_arena::Arena;

let arena: Arena<u32, 8> = Arena::new();
let one: &mut u32 = arena.alloc(1).unwrap();
let two: &mut u32 = arena.alloc(2).unwrap();

println!("{one} {two}");

No runtime deps