VecZnxBigSub

Trait VecZnxBigSub 

Source
pub trait VecZnxBigSub<B: Backend> {
    // Required method
    fn vec_znx_big_sub<R, A, C>(
        &self,
        res: &mut R,
        res_col: usize,
        a: &A,
        a_col: usize,
        b: &C,
        b_col: usize,
    )
       where R: VecZnxBigToMut<B>,
             A: VecZnxBigToRef<B>,
             C: VecZnxBigToRef<B>;
}

Required Methods§

Source

fn vec_znx_big_sub<R, A, C>( &self, res: &mut R, res_col: usize, a: &A, a_col: usize, b: &C, b_col: usize, )
where R: VecZnxBigToMut<B>, A: VecZnxBigToRef<B>, C: VecZnxBigToRef<B>,

Subtracts a to b and stores the result on c.

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§

Source§

impl<B> VecZnxBigSub<B> for Module<B>
where B: Backend + VecZnxBigSubImpl<B>,