VectorAdd

Trait VectorAdd 

Source
pub trait VectorAdd<T, const N: usize> {
    // Required methods
    fn add(self, other: Self) -> Self;
    fn add_scalar(self, scalar: T) -> Self;
}

Required Methods§

Source

fn add(self, other: Self) -> Self

Source

fn add_scalar(self, scalar: T) -> Self

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§

Source§

impl<T: Copy + Add<Output = T>, const N: usize> VectorAdd<T, N> for ArrayVector<T, N>