pub trait VecZnxAddIntoBackend<B>where
B: Backend,{
// Required method
fn vec_znx_add_into_backend(
&self,
res: &mut VecZnx<<B as Backend>::BufMut<'_>>,
res_col: usize,
a: &VecZnx<<B as Backend>::BufRef<'_>>,
a_col: usize,
b: &VecZnx<<B as Backend>::BufRef<'_>>,
b_col: usize,
);
}Required Methods§
Sourcefn vec_znx_add_into_backend(
&self,
res: &mut VecZnx<<B as Backend>::BufMut<'_>>,
res_col: usize,
a: &VecZnx<<B as Backend>::BufRef<'_>>,
a_col: usize,
b: &VecZnx<<B as Backend>::BufRef<'_>>,
b_col: usize,
)
fn vec_znx_add_into_backend( &self, res: &mut VecZnx<<B as Backend>::BufMut<'_>>, res_col: usize, a: &VecZnx<<B as Backend>::BufRef<'_>>, a_col: usize, b: &VecZnx<<B as Backend>::BufRef<'_>>, b_col: usize, )
Adds the selected backend-native column of a to the selected backend-native column of b.