pub trait FastInvSqrt {
    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

Implementors