Skip to main content

Log102

Trait Log102 

Source
pub trait Log102 {
    const LOG_10_2: Self;
}
Expand description

Provides $\log_{10} 2$.

Required Associated Constants§

Source

const LOG_10_2: Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Log102 for f32

$\log_{10} 2$.

Source§

const LOG_10_2: f32 = core::f32::consts::LOG10_2

Source§

impl Log102 for f64

$\log_{10} 2$.

Source§

const LOG_10_2: f64 = core::f64::consts::LOG10_2

Implementors§