Struct rustlearn::array::dense::ArrayView [] [src]

pub struct ArrayView<'a> {
    // some fields omitted
}

A view into a row or column of an existing dense matrix.

Methods

impl<'a> ArrayView<'a>
[src]

fn iter(&'a self) -> ArrayViewIterator<'a>

Iterate over elements of the ArrayView.

Trait Implementations

impl<'a> Debug for ArrayView<'a>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<'a> Clone for ArrayView<'a>
[src]

fn clone(&self) -> ArrayView<'a>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<'a> NonzeroIterable for &'a ArrayView<'a>
[src]

type Output = ArrayViewNonzeroIterator<'a>

fn iter_nonzero(&self) -> ArrayViewNonzeroIterator<'a>

impl<'a> NonzeroIterable for ArrayView<'a>
[src]

type Output = ArrayViewNonzeroIterator<'a>

fn iter_nonzero(&self) -> ArrayViewNonzeroIterator<'a>