MixedTanh

Trait MixedTanh 

Source
pub trait MixedTanh {
    // Required methods
    fn mixed_tanh(&self) -> Self;
    fn mixed_atanh(&self) -> Self;
}

Required Methods§

Source

fn mixed_tanh(&self) -> Self

Take the hyperbolic tangent (tanh) of self. Implementation varies with type.

Source

fn mixed_atanh(&self) -> Self

Take the inverse hyperbolic tangent (atanh) 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 MixedTanh for f32

Source§

fn mixed_tanh(&self) -> Self

Source§

fn mixed_atanh(&self) -> Self

Source§

impl MixedTanh for f64

Source§

fn mixed_tanh(&self) -> Self

Source§

fn mixed_atanh(&self) -> Self

Implementors§