Trait aurum_numeric::Trig [] [src]

pub trait Trig: Real {
    fn acos(self) -> Self;
    fn acosh(self) -> Self;
    fn asin(self) -> Self;
    fn asinh(self) -> Self;
    fn atan(self) -> Self;
    fn atan2(self, other: Self) -> Self;
    fn atanh(self) -> Self;
    fn cos(self) -> Self;
    fn cosh(self) -> Self;
    fn sin(self) -> Self;
    fn sin_cos(self) -> (Self, Self) where Self: Sized;
    fn sinh(self) -> Self;
    fn tan(self) -> Self;
    fn tanh(self) -> Self;
}

Trigonemetric functions.

Required Methods

Implementors