We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
root
print(Foundation.cbrt(1000.0)) // 10.0 print(Double.pow(1000.0, 1.0/3.0)) // 9.999999999999998
print(Foundation.cbrt(1000.0)) // 10.0
print(Double.pow(1000.0, 1.0/3.0)) // 9.999999999999998
Calculation through "pow" gives a different result.