[][src]Trait easy_ml::numeric::extra::Exp

pub trait Exp {
    type Output;
    fn exp(self) -> Self::Output;
}

A type which can compute e^self.

This is implemented by f32 and f64 by value and by reference.

Associated Types

type Output

Loading content...

Required methods

fn exp(self) -> Self::Output

Loading content...

Implementations on Foreign Types

impl Exp for f32[src]

type Output = f32

impl<'_> Exp for &'_ f32[src]

type Output = f32

impl Exp for f64[src]

type Output = f64

impl<'_> Exp for &'_ f64[src]

type Output = f64

Loading content...

Implementors

Loading content...