Type Definition sprs::TriMatViewI

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

Trait Implementations§

source§

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

§

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?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more