Trait malachite_base::num::arithmetic::traits::Ln

source ·
pub trait Ln {
    type Output;

    // Required method
    fn ln(self) -> Self::Output;
}
Expand description

Takes the natural logarithm of a number.

Required Associated Types§

Required Methods§

source

fn ln(self) -> Self::Output

Implementations on Foreign Types§

source§

impl Ln for f32

source§

type Output = f32

source§

fn ln(self) -> f32

source§

impl Ln for f64

source§

type Output = f64

source§

fn ln(self) -> f64

Implementors§