Trait Tan

Source
pub trait Tan {
    type Output;

    // Required method
    fn tan(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn tan(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl Tan for f32

Source§

type Output = f32

Source§

fn tan(self) -> Self::Output

Source§

impl Tan for f64

Source§

type Output = f64

Source§

fn tan(self) -> Self::Output

Source§

impl Tan for Complex<f32>

Source§

type Output = Complex<f32>

Source§

fn tan(self) -> Self::Output

Source§

impl Tan for Complex<f64>

Source§

type Output = Complex<f64>

Source§

fn tan(self) -> Self::Output

Implementors§