Tanh

Trait Tanh 

Source
pub trait Tanh {
    // Required method
    fn tanh(&self) -> Self;
}
Expand description

Trait that returns the result of applying tanh

Required Methods§

Source

fn tanh(&self) -> Self

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 Tanh for f32

Source§

fn tanh(&self) -> f32

Source§

impl Tanh for f64

Source§

fn tanh(&self) -> f64

Implementors§