[][src]Trait totsu::matgen::MatAcc

pub trait MatAcc {
    fn acc_size(&self) -> (usize, usize);
fn acc_get(&self, row: usize, col: usize) -> FP;
fn acc_is_less(&self, sz: (usize, usize)) -> bool;
fn acc_iter(&self) -> MatIter; }

Helper matrix accessor for operator overload

Required methods

fn acc_size(&self) -> (usize, usize)

fn acc_get(&self, row: usize, col: usize) -> FP

fn acc_is_less(&self, sz: (usize, usize)) -> bool

Important traits for MatIter<'a>
fn acc_iter(&self) -> MatIter

Loading content...

Implementors

impl<V: MatView> MatAcc for MatGen<V>[src]

impl<V: MatView, '_> MatAcc for &'_ MatGen<V>[src]

Loading content...