pub trait Ln {
type Output;
// Required method
fn ln(self) -> Self::Output;
}Expand description
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
Implementors§
source§impl<'a, T: Numeric + Real + Primitive> Ln for &Record<'a, T>
impl<'a, T: Numeric + Real + Primitive> Ln for &Record<'a, T>
Natural logarithm, ie ln(x) of a Record by reference.