Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chaitanyaSoni96/d537d38333e8bb9f245d242c3ebf02fe to your computer and use it in GitHub Desktop.
Save chaitanyaSoni96/d537d38333e8bb9f245d242c3ebf02fe to your computer and use it in GitHub Desktop.
Measuring execution speed
let start = CFAbsoluteTimeGetCurrent()
// run your work
let diff = CFAbsoluteTimeGetCurrent() - start
print("Took \(diff) seconds")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment