Trait std::math::Exponent

pub trait Exponent {
    // exponential function: e ^ exponent
    fn exp(exponent: Self) -> Self;
}
Expand description

Trait for exponential functions.
This should exist for UFP64, UFP128 and their signed versions.

Required Methods