pub struct ArenaMap<IDX, V> { /* private fields */ }
Expand description
A map from arena indexes to some other type. Space requirement is O(highest index).
Implementations§
Source§impl<T, V> ArenaMap<Idx<T>, V>
impl<T, V> ArenaMap<Idx<T>, V>
Sourcepub fn with_capacity(capacity: usize) -> Self
pub fn with_capacity(capacity: usize) -> Self
Create a new empty map with specific capacity.
Sourcepub fn reserve(&mut self, additional: usize)
pub fn reserve(&mut self, additional: usize)
Reserves capacity for at least additional more elements to be inserted in the map.
Sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the map as much as possible.
Sourcepub fn contains_idx(&self, idx: Idx<T>) -> bool
pub fn contains_idx(&self, idx: Idx<T>) -> bool
Returns whether the map contains a value for the specified index.
Sourcepub fn remove(&mut self, idx: Idx<T>) -> Option<V>
pub fn remove(&mut self, idx: Idx<T>) -> Option<V>
Removes an index from the map, returning the value at the index if the index was previously in the map.
Sourcepub fn insert(&mut self, idx: Idx<T>, t: V) -> Option<V>
pub fn insert(&mut self, idx: Idx<T>, t: V) -> Option<V>
Inserts a value associated with a given arena index into the map.
If the map did not have this index present, None is returned. Otherwise, the value is updated, and the old value is returned.
Sourcepub fn get(&self, idx: Idx<T>) -> Option<&V>
pub fn get(&self, idx: Idx<T>) -> Option<&V>
Returns a reference to the value associated with the provided index if it is present.
Sourcepub fn get_mut(&mut self, idx: Idx<T>) -> Option<&mut V>
pub fn get_mut(&mut self, idx: Idx<T>) -> Option<&mut V>
Returns a mutable reference to the value associated with the provided index if it is present.
Sourcepub fn values(&self) -> impl DoubleEndedIterator<Item = &V>
pub fn values(&self) -> impl DoubleEndedIterator<Item = &V>
Returns an iterator over the values in the map.
Sourcepub fn values_mut(&mut self) -> impl DoubleEndedIterator<Item = &mut V>
pub fn values_mut(&mut self) -> impl DoubleEndedIterator<Item = &mut V>
Returns an iterator over mutable references to the values in the map.
Sourcepub fn iter(&self) -> impl DoubleEndedIterator<Item = (Idx<T>, &V)>
pub fn iter(&self) -> impl DoubleEndedIterator<Item = (Idx<T>, &V)>
Returns an iterator over the arena indexes and values in the map.
Trait Implementations§
Source§impl<T, V> Extend<(Idx<V>, T)> for ArenaMap<Idx<V>, T>
impl<T, V> Extend<(Idx<V>, T)> for ArenaMap<Idx<V>, T>
Source§fn extend<I: IntoIterator<Item = (Idx<V>, T)>>(&mut self, iter: I)
fn extend<I: IntoIterator<Item = (Idx<V>, T)>>(&mut self, iter: I)
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)