Struct allehanda::matrix::Matrix [] [src]

pub struct Matrix<T> {
    pub dimensions: usize,
    // some fields omitted
}

Fields

Methods

impl<T> Matrix<T>
[src]

Trait Implementations

impl<T: Debug> Debug for Matrix<T>
[src]

Formats the value using the given formatter.

impl<'a, T> IntoIterator for &'a Matrix<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more