Skip to content

Instantly share code, notes, and snippets.

@jshvarts
Created June 27, 2017 05:13
Show Gist options
  • Save jshvarts/801bd28c439098a3f88cebef3c824146 to your computer and use it in GitHub Desktop.
Save jshvarts/801bd28c439098a3f88cebef3c824146 to your computer and use it in GitHub Desktop.
measureTimeMillis of forEach
val forEachMillisEllapsed = measureTimeMillis {
(0..10_000_000).forEach {
if (it % 2 == 0) {
// do something
}
}
}
println("forEachMillisEllapsed: $forEachMillisEllapsed")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment