Skip to content

Instantly share code, notes, and snippets.

@ezura
Created July 12, 2017 13:53
Show Gist options
  • Save ezura/96a13906b69d42ab885942777eec8ce6 to your computer and use it in GitHub Desktop.
Save ezura/96a13906b69d42ab885942777eec8ce6 to your computer and use it in GitHub Desktop.
将来的にこういうのができるようになるっぽい?(任意の列挙子を全網羅の対象から外す) #swift #CodePiece
enum Enum {
case a
case b
@_downgrade_exhaustivity_check
case c
}
// Compile: OK (warning)
switch Enum.a {
case .a: break
case .b: break
// case .c: break // not need
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment