pub trait VecZnxFillUniform {
// Required method
fn vec_znx_fill_uniform<R>(
&self,
base2k: usize,
res: &mut R,
res_col: usize,
source: &mut Source,
)
where R: VecZnxToMut;
}Required Methods§
Sourcefn vec_znx_fill_uniform<R>(
&self,
base2k: usize,
res: &mut R,
res_col: usize,
source: &mut Source,
)where
R: VecZnxToMut,
fn vec_znx_fill_uniform<R>(
&self,
base2k: usize,
res: &mut R,
res_col: usize,
source: &mut Source,
)where
R: VecZnxToMut,
Fills the first size size with uniform values in [-2^{base2k-1}, 2^{base2k-1}]
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.