lax

Trait OperatorNorm_

Source
pub trait OperatorNorm_: Scalar {
    // Required method
    fn opnorm(t: NormType, l: MatrixLayout, a: &[Self]) -> Self::Real;
}

Required Methods§

Source

fn opnorm(t: NormType, l: MatrixLayout, a: &[Self]) -> Self::Real

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 OperatorNorm_ for f32

Source§

fn opnorm(t: NormType, l: MatrixLayout, a: &[Self]) -> Self::Real

Source§

impl OperatorNorm_ for f64

Source§

fn opnorm(t: NormType, l: MatrixLayout, a: &[Self]) -> Self::Real

Source§

impl OperatorNorm_ for c32

Source§

fn opnorm(t: NormType, l: MatrixLayout, a: &[Self]) -> Self::Real

Source§

impl OperatorNorm_ for c64

Source§

fn opnorm(t: NormType, l: MatrixLayout, a: &[Self]) -> Self::Real

Implementors§