Trait 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

Source§

type Output = f32

Source§

fn cosh(self) -> Self::Output

Source§

impl Cosh for f64

Source§

type Output = f64

Source§

fn cosh(self) -> Self::Output

Source§

impl Cosh for Complex<f32>

Source§

type Output = Complex<f32>

Source§

fn cosh(self) -> Self::Output

Source§

impl Cosh for Complex<f64>

Source§

type Output = Complex<f64>

Source§

fn cosh(self) -> Self::Output

Implementors§