Files
kotlin-fork/stdlib/ktSrc/System.kt
T
2011-12-20 11:24:08 +02:00

10 lines
238 B
Kotlin

namespace std.util
/**
Executes current block and returns elapsed time in milliseconds
*/
fun millisTime(block: fun() : Unit) : Long {
val start = System.currentTimeMillis()
block()
return System.currentTimeMillis() - start
}