Trait Log

Source
pub trait Log: CubePrimitive + Sized {
    // Provided methods
    fn log(x: Self) -> Self { ... }
    fn __expand_log(
        scope: &mut Scope,
        x: Self::ExpandType,
    ) -> ExpandElementTyped<Self> { ... }
}

Provided Methods§

Source

fn log(x: Self) -> Self

Source

fn __expand_log( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Log for f32

Source§

impl Log for f64

Source§

impl Log for bf16

Source§

impl Log for f16

Implementors§

Source§

impl Log for flex32

Source§

impl Log for tf32

Source§

impl<P: CubePrimitive + Log> Log for Line<P>

Source§

impl<const POS: u8> Log for FloatExpand<POS>