Trait peroxide::traits::num::Real[][src]

pub trait Real: PowOps + TrigOps + ExpLogOps + Neg + PartialOrd + Add<Output = Self> + Mul<Output = Self> + Div<Output = Self> + Sub<Output = Self> + Add<f64, Output = Self> + Mul<f64, Output = Self> + Div<f64, Output = Self> + Sub<f64, Output = Self> + Clone + Copy {
    fn to_f64(&self) -> f64;
fn from_f64(f: f64) -> Self;
fn to_ad(&self) -> AD; }

Required methods

fn to_f64(&self) -> f64[src]

fn from_f64(f: f64) -> Self[src]

fn to_ad(&self) -> AD[src]

Loading content...

Implementations on Foreign Types

impl Real for f64[src]

Loading content...

Implementors

impl Real for AD[src]

Loading content...