[][src]Type Definition sprs::CsMatViewI

type CsMatViewI<'a, N, I, Iptr = I> = CsMatBase<N, I, &'a [Iptr], &'a [I], &'a [N], Iptr>;

Trait Implementations

impl<'a, N, I, Iptr> IntoIterator for CsMatViewI<'a, N, I, Iptr> where
    I: 'a + SpIndex,
    Iptr: 'a + SpIndex,
    N: 'a, 
[src]

type Item = (&'a N, (I, I))

The type of the elements being iterated over.

type IntoIter = CsIter<'a, N, I, Iptr>

Which kind of iterator are we turning this into?