Trait peroxide::traits::math::ParallelVectorProduct

source ·
pub trait ParallelVectorProduct: Vector {
    // Required method
    fn par_cross(&self, other: &Self) -> Self;
}
Expand description

Vector Products in Parallel

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ParallelVectorProduct for Vec<f64>

source§

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

Implementors§