[][src]Trait easy_ml::numeric::extra::Ln

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

A type which can compute the natural logarithm of itself: ln(self).

This is implemented by f32 and f64 by value and by reference.

Associated Types

type Output

Loading content...

Required methods

fn ln(self) -> Self::Output

Loading content...

Implementations on Foreign Types

impl Ln for f32[src]

type Output = f32

impl<'_> Ln for &'_ f32[src]

type Output = f32

impl Ln for f64[src]

type Output = f64

impl<'_> Ln for &'_ f64[src]

type Output = f64

Loading content...

Implementors

Loading content...