Trait number_general::Trigonometry[][src]

pub trait Trigonometry {
    type Out: NumberInstance;
    fn asin(self) -> Self::Out;
fn sin(self) -> Self::Out;
fn asinh(self) -> Self::Out;
fn sinh(self) -> Self::Out;
fn acos(self) -> Self::Out;
fn cos(self) -> Self::Out;
fn acosh(self) -> Self::Out;
fn cosh(self) -> Self::Out;
fn atan(self) -> Self::Out;
fn tan(self) -> Self::Out;
fn atanh(self) -> Self::Out;
fn tanh(self) -> Self::Out; }
Expand description

Trigonometric functions.

Associated Types

Required methods

Arcsine

Sine

Hyperbolic arcsine

Hyperbolic sine

Hyperbolic arccosine

Cosine

Hyperbolic arccosine

Hyperbolic cosine

Arctangent

Tangent

Hyperbolic arctangent

Hyperbolic tangent

Implementors