commonMain.math.Sqrt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of math-core Show documentation
Show all versions of math-core Show documentation
A multiplatform math library providing mathematical utilities
The newest version!
package math
inline fun sqrt(f: Float) = kotlin.math.sqrt(f)
inline fun sqrt(d: Double) = kotlin.math.sqrt(d)
inline fun sqrt(n: Number) = kotlin.math.sqrt(n.toDouble())
© 2015 - 2025 Weber Informatics LLC | Privacy Policy