Skip to content

Instantly share code, notes, and snippets.

@vnsam
Created January 14, 2020 03:15
Show Gist options
  • Save vnsam/d7219fd70abd3ffb391cdee348b4235a to your computer and use it in GitHub Desktop.
Save vnsam/d7219fd70abd3ffb391cdee348b4235a to your computer and use it in GitHub Desktop.
Measure Swift Code Running Time
func duration(_ block: () -> Void) {
let startTime = CFAbsoluteTimeGetCurrent()
block()
let timeElapsed = CFAbsoluteTimeGetCurrent() - startTime
print(timeElapsed)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment