Skip to content

Instantly share code, notes, and snippets.

@Shehryar
Last active August 13, 2018 17:42
Show Gist options
  • Save Shehryar/b1e1f4565c0eae53bdcee7ab16c6d2d9 to your computer and use it in GitHub Desktop.
Save Shehryar/b1e1f4565c0eae53bdcee7ab16c6d2d9 to your computer and use it in GitHub Desktop.
Swift function execution time
import QuartzCore
func executionTimeInterval(block: () -> ()) -> CFTimeInterval {
let start = CACurrentMediaTime()
block();
let end = CACurrentMediaTime()
return end - start
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment