Trait acme_core::ops::unary::Exp

source ·
pub trait Exp {
    type Output;

    // Required method
    fn exp(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn exp(self) -> Self::Output

Implementations on Foreign Types§

source§

impl Exp for f32

§

type Output = f32

source§

fn exp(self) -> Self::Output

source§

impl Exp for f64

§

type Output = f64

source§

fn exp(self) -> Self::Output

source§

impl Exp for Complex<f32>

§

type Output = Complex<f32>

source§

fn exp(self) -> Self::Output

source§

impl Exp for Complex<f64>

§

type Output = Complex<f64>

source§

fn exp(self) -> Self::Output

Implementors§