Skip to content

Instantly share code, notes, and snippets.

@ezura
Created September 19, 2017 13:28
Show Gist options
  • Save ezura/300ba427db8616499822b2e52186a21a to your computer and use it in GitHub Desktop.
Save ezura/300ba427db8616499822b2e52186a21a to your computer and use it in GitHub Desktop.
`_` にマッチするよね… #swift #CodePiece
switch "" as Optional {
case _:
print("_")
case _?: // ⚠️ Case will never be executed
print("_?")
//case _??: // ❗️error: '?' pattern cannot match values of type 'String'
// print("_??")
default:
print("s")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment