[][src]Struct easy_ml::matrices::iterators::ColumnMajorIterator

pub struct ColumnMajorIterator<'a, T: Clone> { /* fields omitted */ }

An column major iterator over all values in a matrix.

For a 2x2 matrix such as [ 1, 2; 3, 4]: ie

This example is not tested
[
  1, 2
  3, 4
]

The elements will be iterated through as 1, 3, 2, 4

Methods

impl<'a, T: Clone> ColumnMajorIterator<'a, T>[src]

Important traits for ColumnMajorIterator<'a, T>
pub fn new(matrix: &Matrix<T>) -> ColumnMajorIterator<T>[src]

Constructs a column major iterator over this matrix.

Trait Implementations

impl<'a, T: Clone> Iterator for ColumnMajorIterator<'a, T>[src]

type Item = T

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for ColumnMajorIterator<'a, T> where
    T: RefUnwindSafe

impl<'a, T> Send for ColumnMajorIterator<'a, T> where
    T: Sync

impl<'a, T> Sync for ColumnMajorIterator<'a, T> where
    T: Sync

impl<'a, T> Unpin for ColumnMajorIterator<'a, T>

impl<'a, T> UnwindSafe for ColumnMajorIterator<'a, T> where
    T: RefUnwindSafe

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, 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.