All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.math.Sqrt.kt Maven / Gradle / Ivy

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