Skip to content

Instantly share code, notes, and snippets.

@nelanka
Created May 12, 2015 19:08
Show Gist options
  • Save nelanka/b056a46164e1d197e700 to your computer and use it in GitHub Desktop.
Save nelanka/b056a46164e1d197e700 to your computer and use it in GitHub Desktop.
Time a function in Scala
def time[R](block: => R): R = {
val t0 = System.nanoTime()
val result = block
println("Elapsed time: " + (System.nanoTime - t0) + "ns")
result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment