VecZnxSubInplace

Trait VecZnxSubInplace 

Source
pub trait VecZnxSubInplace {
    // Required method
    fn vec_znx_sub_inplace<R, A>(
        &self,
        res: &mut R,
        res_col: usize,
        a: &A,
        a_col: usize,
    )
       where R: VecZnxToMut,
             A: VecZnxToRef;
}

Required Methods§

Source

fn vec_znx_sub_inplace<R, A>( &self, res: &mut R, res_col: usize, a: &A, a_col: usize, )
where R: VecZnxToMut, A: VecZnxToRef,

Subtracts the selected column of a from the selected column of res inplace.

res[res_col] -= a[a_col]

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§