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

A type which can compute the natural logarithm of itself: ln(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

Natural logarithm, ie ln(x) of a Record by reference.

Operation for a record by value.

Natural logarithm, ie ln(x) of a Trace by reference.

Operation for a trace by value.