pub trait Exp {
    type Output;
    fn exp(self) -> Self::Output;
}
Expand description

A type which can compute e^self.

This is implemented by f32 and f64 by value and by reference, as well as Traces and Records of these.

Associated Types

Required methods

Implementations on Foreign Types

Implementors

Exponential, ie ex of a Record by reference.

Operation for a record by value.

Exponential, ie ex of a Trace by reference.

Operation for a trace by value.