10 lines
238 B
Kotlin
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
|
|
} |