Trait palette::num::Ln

source ·
pub trait Ln {
    // Required method
    fn ln(self) -> Self;
}
Expand description

Trait for getting the natural logarithm of self.

Required Methods§

source

fn ln(self) -> Self

Returns the natural logarithm of self.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Ln for f32

source§

fn ln(self) -> Self

source§

impl Ln for f64

source§

fn ln(self) -> Self

source§

impl Ln for f32x4

source§

fn ln(self) -> Self

source§

impl Ln for f32x8

source§

fn ln(self) -> Self

source§

impl Ln for f64x2

source§

fn ln(self) -> Self

source§

impl Ln for f64x4

source§

fn ln(self) -> Self

Implementors§