Trait mech_core::MechNumArithmetic

source ·
pub trait MechNumArithmetic<T>: Add<Output = T> + Sub<Output = T> + Div<Output = T> + Mul<Output = T> + Pow<T, Output = T> + AddAssign + SubAssign + MulAssign + DivAssign + Sized { }

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl MechNumArithmetic<f32> for f32

source§

impl MechNumArithmetic<f64> for f64

Implementors§