Skip to content

Instantly share code, notes, and snippets.

@lambdaofgod
Created August 8, 2015 11:14
Show Gist options
  • Save lambdaofgod/566a77e7b2a7ce825f23 to your computer and use it in GitHub Desktop.
Save lambdaofgod/566a77e7b2a7ce825f23 to your computer and use it in GitHub Desktop.
Function for running time estimation
def timed[T](body: =>T): Double = {
val start = System.nanoTime
dummy = body
val end = System.nanoTime
((end - start)/1000)/1000.0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment