Trait easy_ml::numeric::extra::RealByValue
source · pub trait RealByValue<Rhs = Self, Output = Self>: Sqrt<Output = Output> + Exp<Output = Output> + Pow<Rhs, Output = Output> + Ln<Output = Output> + Sin<Output = Output> + Cos<Output = Output> + Sized { }Expand description
A trait defining what a real number type is in terms of by value numerical operations needed on top of operations defined by Numeric for some functions.
The requirements are Sqrt, Exp, Pow, Ln, Sin, Cos and Sized.
Object Safety§
This trait is not object safe.