[][src]Struct lark_collections::IndexVec

pub struct IndexVec<I, T> where
    I: U32Index
{ /* fields omitted */ }

A vector indexable via values of type I.

Methods

impl<I, T> IndexVec<I, T> where
    I: U32Index
[src]

pub fn new() -> Self
[src]

pub fn with_capacity(cap: usize) -> Self
[src]

pub fn from_elem<S>(elem: T, universe: &IndexVec<I, S>) -> Self where
    T: Clone
[src]

pub fn from_elem_n(elem: T, n: usize) -> Self where
    T: Clone
[src]

pub fn len(&self) -> usize
[src]

pub fn is_empty(&self) -> bool
[src]

pub fn into_iter(self) -> IntoIter<T>
[src]

pub fn into_iter_enumerated(
    self
) -> impl Iterator<Item = (I, T)>
[src]

pub fn iter(&self) -> Iter<T>
[src]

pub fn iter_mut(&mut self) -> IterMut<T>
[src]

pub fn iter_enumerated(
    &self
) -> impl Iterator<Item = (I, &T)>
[src]

pub fn iter_enumerated_mut(
    &mut self
) -> impl Iterator<Item = (I, &mut T)>
[src]

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

pub fn last_idx(&self) -> Option<I>
[src]

pub fn next_idx(&self) -> I
[src]

pub fn shrink_to_fit(&mut self)
[src]

pub fn swap(&mut self, l: I, r: I)
[src]

pub fn truncate(&mut self, s: usize)
[src]

pub fn get(&self, i: I) -> Option<&T>
[src]

pub fn get_mut(&mut self, i: I) -> Option<&mut T>
[src]

pub fn last(&self) -> Option<&T>
[src]

pub fn last_mut(&mut self) -> Option<&mut T>
[src]

pub fn reserve(&mut self, s: usize)
[src]

pub fn resize(&mut self, s: usize, v: T) where
    T: Clone
[src]

pub fn push(&mut self, d: T) -> I
[src]

pub fn push_with_idx<F>(&mut self, f: F) -> I where
    F: FnOnce(I) -> T, 
[src]

Trait Implementations

impl<I: PartialEq, T: PartialEq> PartialEq<IndexVec<I, T>> for IndexVec<I, T> where
    I: U32Index
[src]

impl<I: Eq, T: Eq> Eq for IndexVec<I, T> where
    I: U32Index
[src]

impl<I: Clone, T: Clone> Clone for IndexVec<I, T> where
    I: U32Index
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<I, T> From<Vec<T>> for IndexVec<I, T> where
    I: U32Index
[src]

impl<I, T> Default for IndexVec<I, T> where
    I: U32Index
[src]

impl<I, T> Extend<T> for IndexVec<I, T> where
    I: U32Index
[src]

impl<I, T> IntoIterator for IndexVec<I, T> where
    I: U32Index
[src]

type Item = T

The type of the elements being iterated over.

type IntoIter = IntoIter<T>

Which kind of iterator are we turning this into?

impl<'a, I, T> IntoIterator for &'a IndexVec<I, T> where
    I: U32Index
[src]

type Item = &'a T

The type of the elements being iterated over.

type IntoIter = Iter<'a, T>

Which kind of iterator are we turning this into?

impl<'a, I, T> IntoIterator for &'a mut IndexVec<I, T> where
    I: U32Index
[src]

type Item = &'a mut T

The type of the elements being iterated over.

type IntoIter = IterMut<'a, T>

Which kind of iterator are we turning this into?

impl<I, T> Debug for IndexVec<I, T> where
    I: U32Index,
    T: Debug
[src]

impl<I: Hash, T: Hash> Hash for IndexVec<I, T> where
    I: U32Index
[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<I, T> Index<I> for IndexVec<I, T> where
    I: U32Index
[src]

type Output = T

The returned type after indexing.

impl<I, T> IndexMut<I> for IndexVec<I, T> where
    I: U32Index
[src]

impl<I, T> FromIterator<T> for IndexVec<I, T> where
    I: U32Index
[src]

impl<I, T> DebugWith for IndexVec<I, T> where
    I: U32Index,
    T: DebugWith
[src]

fn debug_with<Cx>(&'me self, cx: &'me Cx) -> DebugCxPair<'me, &'me Self, Cx> where
    Cx: ?Sized
[src]

fn into_debug_with<Cx>(self, cx: &'me Cx) -> DebugCxPair<'me, Self, Cx> where
    Cx: ?Sized
[src]

Auto Trait Implementations

impl<I, T> Send for IndexVec<I, T> where
    I: Send,
    T: Send

impl<I, T> Sync for IndexVec<I, T> where
    I: Sync,
    T: Sync

Blanket Implementations

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

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

type Owned = T

impl<T> From for T
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<Q, K> Equivalent for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<Cx, T> FmtWithSpecialized for T where
    Cx: ?Sized,
    T: Debug + ?Sized
[src]