MixedCosh

Trait MixedCosh 

Source
pub trait MixedCosh {
    // Required methods
    fn mixed_cosh(&self) -> Self;
    fn mixed_acosh(&self) -> Self;
}

Required Methods§

Source

fn mixed_cosh(&self) -> Self

Take the cosh of self. Implementation varies with type.

Source

fn mixed_acosh(&self) -> Self

Take the arccosh 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 MixedCosh for f32

Source§

fn mixed_cosh(&self) -> Self

Source§

fn mixed_acosh(&self) -> Self

Source§

impl MixedCosh for f64

Source§

fn mixed_cosh(&self) -> Self

Source§

fn mixed_acosh(&self) -> Self

Implementors§