MixedTan

Trait MixedTan 

Source
pub trait MixedTan {
    // Required method
    fn mixed_tan(&self) -> Self;
}

Required Methods§

Source

fn mixed_tan(&self) -> Self

Take the tan of self. Implementation varies with type.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl MixedTan for f32

Source§

fn mixed_tan(&self) -> Self

Source§

impl MixedTan for f64

Source§

fn mixed_tan(&self) -> Self

Implementors§