InverseSqrt

Trait InverseSqrt 

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

Provided Methods§

Source

fn inverse_sqrt(x: Self) -> Self

Source

fn __expand_inverse_sqrt( 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 InverseSqrt for f32

Source§

impl InverseSqrt for f64

Source§

impl InverseSqrt for bf16

Source§

impl InverseSqrt for f16

Implementors§