pub trait VecZnxBigSubSmallNegateInplace<B: Backend> {
// Required method
fn vec_znx_big_sub_small_negate_inplace<R, A>(
&self,
res: &mut R,
res_col: usize,
a: &A,
a_col: usize,
)
where R: VecZnxBigToMut<B>,
A: VecZnxToRef;
}Required Methods§
Sourcefn vec_znx_big_sub_small_negate_inplace<R, A>(
&self,
res: &mut R,
res_col: usize,
a: &A,
a_col: usize,
)where
R: VecZnxBigToMut<B>,
A: VecZnxToRef,
fn vec_znx_big_sub_small_negate_inplace<R, A>(
&self,
res: &mut R,
res_col: usize,
a: &A,
a_col: usize,
)where
R: VecZnxBigToMut<B>,
A: VecZnxToRef,
Subtracts res from a and stores the result on res.
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.