peroxide::traits::math

Trait ParallelMatrixProduct

Source
pub trait ParallelMatrixProduct {
    // Required method
    fn par_hadamard(&self, other: &Self) -> Self;
}
Expand description

Matrix Products in Parallel

Required Methods§

Source

fn par_hadamard(&self, other: &Self) -> Self

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§