Skip to content

Instantly share code, notes, and snippets.

@cowlike
Created July 13, 2018 21:07
Show Gist options
  • Save cowlike/d70a915f9a3ed3d630ed2f4ee5ef2fd1 to your computer and use it in GitHub Desktop.
Save cowlike/d70a915f9a3ed3d630ed2f4ee5ef2fd1 to your computer and use it in GitHub Desktop.
F# timer function
let inline runtimeMillisVal (test: unit -> ^a): ^a * int64 =
let watch = System.Diagnostics.Stopwatch.StartNew()
let result = test()
watch.Stop()
result, watch.ElapsedMilliseconds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment