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

commonMain.ag.granular.io.SystemUtils.kt Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package ag.granular.io

expect fun getTimeMillis(): Long

fun  measureTime(message: String, block: () -> T): T {
    val start = getTimeMillis()
    val r = block()
    println("$message took: ${getTimeMillis() - start} ms")
    return r
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy