commonMain.com.paoapps.fifi.extensions.FloatExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fifi-common Show documentation
Show all versions of fifi-common Show documentation
Kotlin Multiplatform Mobile framework for optimal code sharing between iOS and Android.
The newest version!
package com.paoapps.fifi.extensions
fun Float.round(decimals: Int): Float {
var multiplier = 1.0f
repeat(decimals ) { multiplier *= 10 }
return kotlin.math.round(this * multiplier) / multiplier
}