pub trait VecZnxNegateInplace {
// Required method
fn vec_znx_negate_inplace<A>(&self, a: &mut A, a_col: usize)
where A: VecZnxToMut;
}Required Methods§
Sourcefn vec_znx_negate_inplace<A>(&self, a: &mut A, a_col: usize)where
A: VecZnxToMut,
fn vec_znx_negate_inplace<A>(&self, a: &mut A, a_col: usize)where
A: VecZnxToMut,
Negates the selected column of a.
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.