Trait honestintervals::transc::Transc [] [src]

pub trait Transc<RHS = Self> {
    type Output;
    fn log(self) -> Self::Output;
    fn exp(self) -> Self::Output;
    fn pow(self, rhs: RHS) -> Self::Output;
}

Trait for transcendental functions.

Associated Types

Output type.

Required Methods

Computes the natural logarithm of self.

Computes the natural exponential of self.

Computes self raised to the power rhs.

Implementors