pub trait Nrm2: Sized {
// Required method
fn nrm2<V: ?Sized + Vector<Self>>(x: &V) -> Self;
}
Expand description
Computes the L2 norm (Euclidian length) of a vector.
Required Methods§
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.