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

commonMain.com.paoapps.fifi.extensions.FloatExtensions.kt Maven / Gradle / Ivy

Go to download

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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy