NumVec

Trait NumVec 

Source
pub trait NumVec:
    Add<Self, Output = Self>
    + Sub<Self, Output = Self>
    + Mul<Self::Field, Output = Self>
    + Div<Self::Field, Output = Self>
    + MulAssign<Self::Field>
    + DivAssign<Self::Field>
    + AddAssign<Self>
    + SubAssign<Self>
    + PartialEq
    + Sized {
    type Field: BaseNum;
}
Expand description

Trait grouping most common operations on vectors.

Required Associated Types§

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.

Implementors§