Skip to main content

Tan

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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Tan for f32

Source§

type Output = f32

Source§

fn tan(self) -> <f32 as Tan>::Output

Source§

impl Tan for f64

Source§

type Output = f64

Source§

fn tan(self) -> <f64 as Tan>::Output

Implementors§