Trait peroxide::traits::num::TrigOps[][src]

pub trait TrigOps: Sized + Div<Output = Self> {
    fn sin_cos(&self) -> (Self, Self);
fn sinh_cosh(&self) -> (Self, Self);
fn asin(&self) -> Self;
fn acos(&self) -> Self;
fn atan(&self) -> Self;
fn asinh(&self) -> Self;
fn acosh(&self) -> Self;
fn atanh(&self) -> Self; fn sin(&self) -> Self { ... }
fn cos(&self) -> Self { ... }
fn tan(&self) -> Self { ... }
fn sinh(&self) -> Self { ... }
fn cosh(&self) -> Self { ... }
fn tanh(&self) -> Self { ... } }

Required methods

fn sin_cos(&self) -> (Self, Self)[src]

fn sinh_cosh(&self) -> (Self, Self)[src]

fn asin(&self) -> Self[src]

fn acos(&self) -> Self[src]

fn atan(&self) -> Self[src]

fn asinh(&self) -> Self[src]

fn acosh(&self) -> Self[src]

fn atanh(&self) -> Self[src]

Loading content...

Provided methods

fn sin(&self) -> Self[src]

fn cos(&self) -> Self[src]

fn tan(&self) -> Self[src]

fn sinh(&self) -> Self[src]

fn cosh(&self) -> Self[src]

fn tanh(&self) -> Self[src]

Loading content...

Implementations on Foreign Types

impl TrigOps for f64[src]

Loading content...

Implementors

impl TrigOps for AD[src]

Loading content...