Skip to main content

Log2E

Trait Log2E 

Source
pub trait Log2E {
    const LOG_2_E: Self;
}
Expand description

Provides $\log_2 e$.

Required Associated Constants§

Source

const LOG_2_E: 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 Log2E for f32

$\log_2 e$.

Source§

const LOG_2_E: f32 = core::f32::consts::LOG2_E

Source§

impl Log2E for f64

$\log_2 e$.

Source§

const LOG_2_E: f64 = core::f64::consts::LOG2_E

Implementors§