[][src]Type Definition sprs::TriMatViewI

type TriMatViewI<'a, N, I> = TriMatBase<&'a [I], &'a [N]>;

Trait Implementations

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

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

The type of the elements being iterated over.

type IntoIter = TriMatIter<Iter<'a, I>, Iter<'a, I>, Iter<'a, N>>

Which kind of iterator are we turning this into?