Skip to content

Instantly share code, notes, and snippets.

@hishma
Last active April 5, 2019 12:37
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save hishma/3fc6bea8260edc6970f0759e219e6b3d to your computer and use it in GitHub Desktop.
Time a function in swift
@discardableResult
static func measure<T>(name: String = "", _ block: () -> T) -> T {
let startTime = CFAbsoluteTimeGetCurrent()
let result = block()
let timeElapsed = CFAbsoluteTimeGetCurrent() - startTime
print("Time: \(name) - \(timeElapsed)")
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment