pub trait FastInvSqrt {
    // Required method
    fn fast_invsqrt(x: Self) -> Self;
}
Expand description

Implement the fast approximate computation of ‘1/sqrt(x)’ for a type.

Required Methods§

Implementations on Foreign Types§

source§

impl FastInvSqrt for f32

source§

fn fast_invsqrt(x: Self) -> Self

source§

impl FastInvSqrt for f64

source§

fn fast_invsqrt(x: Self) -> Self

Implementors§