Created
March 3, 2020 09:09
-
-
Save Denismih/182a8fbfadc22cc81969cee6d1df3134 to your computer and use it in GitHub Desktop.
Measure elapsed time
This file contains 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
do { | |
let info = ProcessInfo.processInfo | |
let begin = info.systemUptime | |
// do something | |
let diff = (info.systemUptime - begin) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment