Created
February 1, 2018 21:51
-
-
Save toshi0383/e2cf3acff24b5d323e34b4f4186f82ba to your computer and use it in GitHub Desktop.
Swiftのコンパイル時間tip。これだけで10倍違う。この書き方のexpectが10個あるだけで1秒かかるってことか。まあ1行で書きたいけどなー。 #CodePiece
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
// 100ms to compile | |
expect(userDefaults[.intKey]) == 3 | |
// 5-15ms to compile | |
let int: Int = userDefaults[.intKey] | |
expect(int) == 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment