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

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

The 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 - 2024 Weber Informatics LLC | Privacy Policy