Trait fast_inv_sqrt::InvSqrt64 [] [src]

pub trait InvSqrt64 {
    fn inv_sqrt64(self) -> f64;
}

A trait that allows calculation of inverse square root into a Float(64).

Required Methods

Calculates the inverse square root of a number.

Implementors