peroxide::traits::math

Trait ParallelNormed

Source
pub trait ParallelNormed: Vector {
    type UnsignedScalar;

    // Required method
    fn par_norm(&self, kind: Norm) -> Self::UnsignedScalar;
}
Expand description

Normed Vector in Parallel

Required Associated Types§

Required Methods§

Source

fn par_norm(&self, kind: Norm) -> Self::UnsignedScalar

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.

Implementations on Foreign Types§

Source§

impl ParallelNormed for Vec<f64>

Implementors§