Skip to content

Instantly share code, notes, and snippets.

@rayfix
Created April 23, 2019 16:00
Show Gist options
  • Select an option

  • Save rayfix/bc50426a3852f4f63d0f49cf55841c33 to your computer and use it in GitHub Desktop.

Select an option

Save rayfix/bc50426a3852f4f63d0f49cf55841c33 to your computer and use it in GitHub Desktop.
Unknown cases
enum Coin {
case heads
case tails
var isHeads: Bool {
switch self {
case .heads:
return true
case .tails:
return false
@unknown default:
return false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment