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

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)

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

Loading content...

Provided 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

Loading content...

Implementations on Foreign Types

impl TrigOps for f64[src]

Loading content...

Implementors

impl TrigOps for Number[src]

impl TrigOps for AD1[src]

impl TrigOps for AD2[src]

impl TrigOps for AD3[src]

impl TrigOps for AD4[src]

impl TrigOps for AD5[src]

impl TrigOps for Dual[src]

Trigonometric function with Dual

impl TrigOps for HyperDual[src]

Loading content...