// Cbrt returns the cube root of x. // // Special cases are: // // Cbrt(±0) = ±0 // Cbrt(±Inf) = ±Inf // Cbrt(NaN) = NaN func Cbrt(x float64) float64 { … } func cbrt(x float64) float64 { … }
// Cbrt returns the cube root of x. // // Special cases are: // // Cbrt(±0) = ±0 // Cbrt(±Inf) = ±Inf // Cbrt(NaN) = NaN func Cbrt(x float64) float64 { … } func cbrt(x float64) float64 { … }