Skip to content

Instantly share code, notes, and snippets.

@toshi0383
Created February 1, 2018 21:51
Show Gist options
  • Save toshi0383/e2cf3acff24b5d323e34b4f4186f82ba to your computer and use it in GitHub Desktop.
Save toshi0383/e2cf3acff24b5d323e34b4f4186f82ba to your computer and use it in GitHub Desktop.
Swiftのコンパイル時間tip。これだけで10倍違う。この書き方のexpectが10個あるだけで1秒かかるってことか。まあ1行で書きたいけどなー。 #CodePiece
// 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