Trait Exponential

Source
pub trait Exponential: Reals {
    // Provided methods
    fn exp(self, iterations: usize) -> Self { ... }
    fn lnn(self, iterations: usize) -> Self { ... }
}

Provided Methods§

Source

fn exp(self, iterations: usize) -> Self

Source

fn lnn(self, iterations: usize) -> Self

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 Exponential for f32

Source§

impl Exponential for f64

Implementors§