newnum

Trait ATrigH

Source
pub trait ATrigH {
    type Output;

    // Required methods
    fn asinh(self) -> Self::Output;
    fn acosh(self) -> Self::Output;
    fn atanh(self) -> Self::Output;
    fn acoth(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn asinh(self) -> Self::Output

Source

fn acosh(self) -> Self::Output

Source

fn atanh(self) -> Self::Output

Source

fn acoth(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl ATrigH for f32

Source§

type Output = f32

Source§

fn asinh(self) -> Self::Output

Source§

fn acosh(self) -> Self::Output

Source§

fn atanh(self) -> Self::Output

Source§

fn acoth(self) -> Self::Output

Source§

impl ATrigH for f64

Source§

type Output = f64

Source§

fn asinh(self) -> Self::Output

Source§

fn acosh(self) -> Self::Output

Source§

fn atanh(self) -> Self::Output

Source§

fn acoth(self) -> Self::Output

Implementors§