Trait Sinh

Source
pub trait Sinh {
    type Output;

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

Required Associated Types§

Required Methods§

Source

fn sinh(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl Sinh for f32

Source§

type Output = f32

Source§

fn sinh(self) -> <f32 as Sinh>::Output

Source§

impl Sinh for f64

Source§

type Output = f64

Source§

fn sinh(self) -> <f64 as Sinh>::Output

Source§

impl Sinh for Complex<f32>

Source§

impl Sinh for Complex<f64>

Implementors§