Type Alias sprs::TriMatViewI

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

Aliased Type§

struct TriMatViewI<'a, N, I> { /* private fields */ }

Trait Implementations§

source§

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

source§

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

The type of the elements being iterated over.
source§

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