Type Definition sprs::CsVecViewI[][src]

type CsVecViewI<'a, N, I = usize> = CsVecBase<&'a [I], &'a [N], N, I>;

Implementations

impl<'a, N: 'a, I: 'a + SpIndex> CsVecViewI<'a, N, I>[src]

pub fn get_rbr(&self, index: usize) -> Option<&'a N>[src]

Access element at given index, with logarithmic complexity

Re-borrowing version of at().

Trait Implementations

impl<'a, N: 'a, I: 'a> IntoSparseVecIter<'a, N> for CsVecViewI<'a, N, I> where
    I: SpIndex
[src]

type IterType = VectorIterator<'a, N, I>