Sqrt returns the square root of x. Special cases are: Sqrt(+Inf) = +Inf Sqrt(±0) = ±0 Sqrt(x < 0) = NaN Sqrt(NaN) = NaN
(x float32)
| 12 | // Sqrt(x < 0) = NaN |
| 13 | // Sqrt(NaN) = NaN |
| 14 | func Sqrt(x float32) float32 { |
| 15 | return engomath.Sqrt(x) |
| 16 | } |
no outgoing calls