Trait acme_core::ops::unary::Cosh

source ·
pub trait Cosh {
    type Output;

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

Required Associated Types§

Required Methods§

source

fn cosh(self) -> Self::Output

Implementations on Foreign Types§

source§

impl Cosh for f32

§

type Output = f32

source§

fn cosh(self) -> Self::Output

source§

impl Cosh for f64

§

type Output = f64

source§

fn cosh(self) -> Self::Output

source§

impl Cosh for Complex<f32>

§

type Output = Complex<f32>

source§

fn cosh(self) -> Self::Output

source§

impl Cosh for Complex<f64>

§

type Output = Complex<f64>

source§

fn cosh(self) -> Self::Output

Implementors§