pub const fn pow(x: f64, y: f64) -> f64
Power function
let _a = pow(10.0, 2.5); assert_eq!(pow(10.0, 2.0), 100.0);