peroxide::traits::sugar

Trait VecOps

Source
pub trait VecOps: Sized + FPVector
where Self::Scalar: Copy + Clone + Add<Self::Scalar, Output = Self::Scalar> + Sub<Self::Scalar, Output = Self::Scalar> + Mul<Self::Scalar, Output = Self::Scalar> + Div<Self::Scalar, Output = Self::Scalar>,
{ // Provided methods fn add_v(&self, v: &Self) -> Self { ... } fn sub_v(&self, v: &Self) -> Self { ... } fn mul_v(&self, v: &Self) -> Self { ... } fn div_v(&self, v: &Self) -> Self { ... } fn add_s(&self, s: Self::Scalar) -> Self { ... } fn sub_s(&self, s: Self::Scalar) -> Self { ... } fn mul_s(&self, s: Self::Scalar) -> Self { ... } fn div_s(&self, s: Self::Scalar) -> Self { ... } }
Expand description

Syntactic sugar for Vector operations

Provided Methods§

Source

fn add_v(&self, v: &Self) -> Self

Source

fn sub_v(&self, v: &Self) -> Self

Source

fn mul_v(&self, v: &Self) -> Self

Source

fn div_v(&self, v: &Self) -> Self

Source

fn add_s(&self, s: Self::Scalar) -> Self

Source

fn sub_s(&self, s: Self::Scalar) -> Self

Source

fn mul_s(&self, s: Self::Scalar) -> Self

Source

fn div_s(&self, s: Self::Scalar) -> 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.

Implementations on Foreign Types§

Source§

impl VecOps for Vec<AD>

Source§

impl VecOps for Vec<f64>

Source§

impl VecOps for Vec<Complex<f64>>

Implementors§