Trait peroxide::traits::math::ParallelVector
source · pub trait ParallelVector {
type Scalar;
// Required methods
fn par_add_vec(&self, rhs: &Self) -> Self;
fn par_sub_vec(&self, rhs: &Self) -> Self;
fn par_mul_scalar(&self, rhs: Self::Scalar) -> Self;
}
Expand description
Mathematical Vector in Parallel
Required Associated Types§
Required Methods§
fn par_add_vec(&self, rhs: &Self) -> Self
fn par_sub_vec(&self, rhs: &Self) -> Self
fn par_mul_scalar(&self, rhs: Self::Scalar) -> Self
Object Safety§
This trait is not object safe.