pub struct Arena<T, A = DefaultArenaBehavior<T>> { /* private fields */ }
Expand description
An arena of objects of type T
.
use id_arena::Arena;
let mut arena = Arena::<&str>::new();
let a = arena.alloc("Albert");
assert_eq!(arena[a], "Albert");
arena[a] = "Alice";
assert_eq!(arena[a], "Alice");
Implementations§
Source§impl<T, A> Arena<T, A>where
A: ArenaBehavior,
impl<T, A> Arena<T, A>where
A: ArenaBehavior,
Sourcepub fn new() -> Arena<T, A>
pub fn new() -> Arena<T, A>
Construct a new, empty Arena
.
use id_arena::Arena;
let mut arena = Arena::<usize>::new();
arena.alloc(42);
Sourcepub fn with_capacity(capacity: usize) -> Arena<T, A>
pub fn with_capacity(capacity: usize) -> Arena<T, A>
Construct a new, empty Arena
with capacity for the given number of
elements.
use id_arena::Arena;
let mut arena = Arena::<usize>::with_capacity(100);
for x in 0..100 {
arena.alloc(x * x);
}
Sourcepub fn alloc(&mut self, item: T) -> A::Id
pub fn alloc(&mut self, item: T) -> A::Id
Allocate item
within this arena and return its id.
use id_arena::Arena;
let mut arena = Arena::<usize>::new();
let _id = arena.alloc(42);
§Panics
Panics if the number of elements in the arena overflows a usize
or
Id
’s index storage representation.
Sourcepub fn alloc_with_id(&mut self, f: impl FnOnce(A::Id) -> T) -> A::Id
pub fn alloc_with_id(&mut self, f: impl FnOnce(A::Id) -> T) -> A::Id
Allocate an item with the id that it will be assigned.
This is useful for structures that want to store their id as their own member.
use id_arena::{Arena, Id};
struct Cat {
id: Id<Cat>,
}
let mut arena = Arena::<Cat>::new();
let kitty = arena.alloc_with_id(|id| Cat { id });
assert_eq!(arena[kitty].id, kitty);
Sourcepub fn next_id(&self) -> A::Id
pub fn next_id(&self) -> A::Id
Get the id that will be used for the next item allocated into this arena.
If you are allocating a struct
that wants to have its id as a member
of itself, prefer the less error-prone Arena::alloc_with_id
method.
Sourcepub fn get(&self, id: A::Id) -> Option<&T>
pub fn get(&self, id: A::Id) -> Option<&T>
Get a shared reference to the object associated with the given id
if
it exists.
If there is no object associated with id
(for example, it might
reference an object allocated within a different arena) then return
None
.
use id_arena::Arena;
let mut arena = Arena::<usize>::new();
let id = arena.alloc(42);
assert!(arena.get(id).is_some());
let other_arena = Arena::<usize>::new();
assert!(other_arena.get(id).is_none());
Sourcepub fn get_mut(&mut self, id: A::Id) -> Option<&mut T>
pub fn get_mut(&mut self, id: A::Id) -> Option<&mut T>
Get an exclusive reference to the object associated with the given id
if it exists.
If there is no object associated with id
(for example, it might
reference an object allocated within a different arena) then return
None
.
use id_arena::Arena;
let mut arena = Arena::<usize>::new();
let id = arena.alloc(42);
assert!(arena.get_mut(id).is_some());
let mut other_arena = Arena::<usize>::new();
assert!(other_arena.get_mut(id).is_none());
Sourcepub fn iter(&self) -> Iter<'_, T, A> ⓘ
pub fn iter(&self) -> Iter<'_, T, A> ⓘ
Iterate over this arena’s items and their ids.
use id_arena::Arena;
let mut arena = Arena::<&str>::new();
arena.alloc("hello");
arena.alloc("hi");
arena.alloc("yo");
for (id, s) in arena.iter() {
assert_eq!(arena.get(id).unwrap(), s);
println!("{:?} -> {}", id, s);
}