BivariateTensoring

Trait BivariateTensoring 

Source
pub trait BivariateTensoring<BE: Backend>{
    // Provided method
    fn bivariate_tensoring<R, A, B>(
        &self,
        k: i64,
        res: &mut R,
        a: &A,
        b: &B,
        scratch: &mut Scratch<BE>,
    )
       where R: VecZnxDftToMut<BE>,
             A: VecZnxToRef,
             B: VecZnxDftToRef<BE> { ... }
}

Provided Methods§

Source

fn bivariate_tensoring<R, A, B>( &self, k: i64, res: &mut R, a: &A, b: &B, scratch: &mut Scratch<BE>, )
where R: VecZnxDftToMut<BE>, A: VecZnxToRef, B: VecZnxDftToRef<BE>,

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§