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§
type UnsignedScalar
Required Methods§
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>
Available on crate feature parallel only.
impl ParallelNormed for Vec<f64>
Available on crate feature
parallel only.Implementors§
Source§impl ParallelNormed for Matrix
Available on crate feature parallel only.
impl ParallelNormed for Matrix
Available on crate feature
parallel only.