Trait fixed_math::traits::Sqrt
source · pub trait Sqrt {
// Required method
fn sqrt(self) -> Self;
}Expand description
Take square root of a number.
It is not implemented for fixed number types with 0 integer bits.
Implementation exists for f32 and f64 too.