Function sqrt
fn sqrt(x: f32) -> f32
Experimental version of sqrt in core. See f32::sqrt for details.
Examples
use f32;
let positive = 4.0_f32;
let negative = -4.0_f32;
let negative_zero = -0.0_f32;
assert_eq!;
assert!;
assert_eq!;
This standalone function is for testing only. It will be stabilized as an inherent method.