[][src]Trait maths_traits::analysis::real::Trig

pub trait Trig: Field {
    fn sin(self) -> Self;
fn cos(self) -> Self;
fn tan(self) -> Self;
fn sinh(self) -> Self;
fn cosh(self) -> Self;
fn tanh(self) -> Self;
fn asin(self) -> Self;
fn acos(self) -> Self;
fn atan(self) -> Self;
fn atan2(y: Self, x: Self) -> Self;
fn asinh(self) -> Self;
fn acosh(self) -> Self;
fn atanh(self) -> Self; fn sin_cos(self) -> (Self, Self) { ... }
fn sec(self) -> Self { ... }
fn csc(self) -> Self { ... }
fn cot(self) -> Self { ... }
fn sech(self) -> Self { ... }
fn csch(self) -> Self { ... }
fn coth(self) -> Self { ... }
fn asec(self) -> Self { ... }
fn acsc(self) -> Self { ... }
fn acot(self) -> Self { ... }
fn acot2(x: Self, y: Self) -> Self { ... }
fn asech(self) -> Self { ... }
fn acsch(self) -> Self { ... }
fn acoth(self) -> Self { ... } }

Required methods

fn sin(self) -> Self

fn cos(self) -> Self

fn tan(self) -> Self

fn sinh(self) -> Self

fn cosh(self) -> Self

fn tanh(self) -> Self

fn asin(self) -> Self

fn acos(self) -> Self

fn atan(self) -> Self

fn atan2(y: Self, x: Self) -> Self

fn asinh(self) -> Self

fn acosh(self) -> Self

fn atanh(self) -> Self

Loading content...

Provided methods

fn sin_cos(self) -> (Self, Self)

fn sec(self) -> Self

fn csc(self) -> Self

fn cot(self) -> Self

fn sech(self) -> Self

fn csch(self) -> Self

fn coth(self) -> Self

fn asec(self) -> Self

fn acsc(self) -> Self

fn acot(self) -> Self

fn acot2(x: Self, y: Self) -> Self

fn asech(self) -> Self

fn acsch(self) -> Self

fn acoth(self) -> Self

Loading content...

Implementations on Foreign Types

impl Trig for f32[src]

fn sec(self) -> Self[src]

fn csc(self) -> Self[src]

fn cot(self) -> Self[src]

fn sech(self) -> Self[src]

fn csch(self) -> Self[src]

fn coth(self) -> Self[src]

fn asec(self) -> Self[src]

fn acsc(self) -> Self[src]

fn acot(self) -> Self[src]

fn acot2(x: Self, y: Self) -> Self[src]

fn asech(self) -> Self[src]

fn acsch(self) -> Self[src]

fn acoth(self) -> Self[src]

impl Trig for f64[src]

fn sec(self) -> Self[src]

fn csc(self) -> Self[src]

fn cot(self) -> Self[src]

fn sech(self) -> Self[src]

fn csch(self) -> Self[src]

fn coth(self) -> Self[src]

fn asec(self) -> Self[src]

fn acsc(self) -> Self[src]

fn acot(self) -> Self[src]

fn acot2(x: Self, y: Self) -> Self[src]

fn asech(self) -> Self[src]

fn acsch(self) -> Self[src]

fn acoth(self) -> Self[src]

Loading content...

Implementors

Loading content...