[][src]Trait peroxide::operation::extra_ops::TrigOps

pub trait TrigOps {
    type Output;
    fn sin(&self) -> Self::Output;
fn cos(&self) -> Self::Output;
fn tan(&self) -> Self::Output; }

Associated Types

type Output

Loading content...

Required methods

fn sin(&self) -> Self::Output

fn cos(&self) -> Self::Output

fn tan(&self) -> Self::Output

Loading content...

Implementors

impl TrigOps for Dual[src]

Trigonometric function with Dual

type Output = Dual

Loading content...