Function cbrt
fn cbrt(x: f64) -> f64
Experimental version of cbrt in core. See f64::cbrt for details.
Examples
use f64;
let x = 8.0_f64;
// x^(1/3) - 2 == 0
let abs_difference = .abs;
assert!;
This standalone function is for testing only. It will be stabilized as an inherent method.