Created
September 1, 2018 07:43
-
-
Save koher/d967f40d7223d2009ae32d15ed38c891 to your computer and use it in GitHub Desktop.
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
do { // 一時的な変数 foo のスコープを切る | |
let foo: Foo | |
switch bar { | |
case .a: | |
foo = ... | |
case .b: | |
foo = ... | |
case .c: | |
foo = ... | |
} | |
self.foo = foo // 代入を一元化して、代入する値を切り替えるための switch であることを示す | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment