Struct ra_ap_la_arena::ArenaMap[][src]

pub struct ArenaMap<IDX, V> { /* fields omitted */ }

A map from arena indexes to some other type. Space requirement is O(highest index).

Implementations

impl<T, V> ArenaMap<Idx<T>, V>[src]

pub fn insert(&mut self, idx: Idx<T>, t: V)[src]

Inserts a value associated with a given arena index into the map.

pub fn get(&self, idx: Idx<T>) -> Option<&V>[src]

Returns a reference to the value associated with the provided index if it is present.

pub fn get_mut(&mut self, idx: Idx<T>) -> Option<&mut V>[src]

Returns a mutable reference to the value associated with the provided index if it is present.

pub fn values(&self) -> impl Iterator<Item = &V>[src]

Returns an iterator over the values in the map.

pub fn values_mut(&mut self) -> impl Iterator<Item = &mut V>[src]

Returns an iterator over mutable references to the values in the map.

pub fn iter(&self) -> impl Iterator<Item = (Idx<T>, &V)>[src]

Returns an iterator over the arena indexes and values in the map.

Trait Implementations

impl<IDX: Clone, V: Clone> Clone for ArenaMap<IDX, V>[src]

impl<IDX: Debug, V: Debug> Debug for ArenaMap<IDX, V>[src]

impl<T, V> Default for ArenaMap<Idx<V>, T>[src]

impl<IDX: Eq, V: Eq> Eq for ArenaMap<IDX, V>[src]

impl<IDX: Hash, V: Hash> Hash for ArenaMap<IDX, V>[src]

impl<T, V> Index<Idx<V>> for ArenaMap<Idx<V>, T>[src]

type Output = T

The returned type after indexing.

impl<IDX: Ord, V: Ord> Ord for ArenaMap<IDX, V>[src]

impl<IDX: PartialEq, V: PartialEq> PartialEq<ArenaMap<IDX, V>> for ArenaMap<IDX, V>[src]

impl<IDX: PartialOrd, V: PartialOrd> PartialOrd<ArenaMap<IDX, V>> for ArenaMap<IDX, V>[src]

impl<IDX, V> StructuralEq for ArenaMap<IDX, V>[src]

impl<IDX, V> StructuralPartialEq for ArenaMap<IDX, V>[src]

Auto Trait Implementations

impl<IDX, V> RefUnwindSafe for ArenaMap<IDX, V> where
    IDX: RefUnwindSafe,
    V: RefUnwindSafe
[src]

impl<IDX, V> Send for ArenaMap<IDX, V> where
    IDX: Send,
    V: Send
[src]

impl<IDX, V> Sync for ArenaMap<IDX, V> where
    IDX: Sync,
    V: Sync
[src]

impl<IDX, V> Unpin for ArenaMap<IDX, V> where
    IDX: Unpin,
    V: Unpin
[src]

impl<IDX, V> UnwindSafe for ArenaMap<IDX, V> where
    IDX: UnwindSafe,
    V: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.