pub trait Exponent { // exponential function: e ^ exponent fn exp(exponent: Self) -> Self; }
Trait for exponential functions. This should exist for UFP64, UFP128 and their signed versions.