measure
Thanks for your feedback!
Was this page helpful?
Executes the given block and returns elapsed time in milliseconds.
import kotlin.system.* fun main() { //sampleStart val numbers: List<Int> val timeInMillis = measureTimeMillis { numbers = buildList { addAll(0..100) shuffle() sortDescending() } } // here numbers are initialized and sorted println(numbers.first()) // 100 println("(The operation took $timeInMillis ms)") //sampleEnd }
xxxxxxxxxx
val numbers: List<Int>
val timeInMillis = measureTimeMillis {
numbers = buildList {
addAll(0..100)
shuffle()
sortDescending()
}
}
// here numbers are initialized and sorted
println(numbers.first()) // 100
println("(The operation took $timeInMillis ms)")
Thanks for your feedback!