[][src]Struct sprs::OuterIteratorPerm

pub struct OuterIteratorPerm<'iter, 'perm: 'iter, N: 'iter, I: 'perm, Iptr: 'perm = I> { /* fields omitted */ }

Iterator on the matrix' outer dimension, permuted Implemented over an iterator on the indptr array

Trait Implementations

impl<'iter, 'perm: 'iter, N: 'iter, I: 'iter + SpIndex, Iptr: 'iter + SpIndex> Iterator for OuterIteratorPerm<'iter, 'perm, N, I, Iptr>[src]

Permuted outer iteration on a compressed matrix yields a tuple consisting of the outer index and of a sparse vector containing the associated inner dimension

type Item = (usize, CsVecBase<&'iter [I], &'iter [N]>)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'iter, 'perm, N, I, Iptr> RefUnwindSafe for OuterIteratorPerm<'iter, 'perm, N, I, Iptr> where
    I: RefUnwindSafe,
    Iptr: RefUnwindSafe,
    N: RefUnwindSafe
[src]

impl<'iter, 'perm, N, I, Iptr> Send for OuterIteratorPerm<'iter, 'perm, N, I, Iptr> where
    I: Sync,
    Iptr: Sync,
    N: Sync
[src]

impl<'iter, 'perm, N, I, Iptr> Sync for OuterIteratorPerm<'iter, 'perm, N, I, Iptr> where
    I: Sync,
    Iptr: Sync,
    N: Sync
[src]

impl<'iter, 'perm, N, I, Iptr> Unpin for OuterIteratorPerm<'iter, 'perm, N, I, Iptr>[src]

impl<'iter, 'perm, N, I, Iptr> UnwindSafe for OuterIteratorPerm<'iter, 'perm, N, I, Iptr> where
    I: RefUnwindSafe,
    Iptr: RefUnwindSafe,
    N: RefUnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.