Last active
April 5, 2019 12:37
-
-
Save hishma/3fc6bea8260edc6970f0759e219e6b3d to your computer and use it in GitHub Desktop.
Time a function in swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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