Last active
November 21, 2017 06:18
-
-
Save ZHocean123/3ac8480a08fdb1187e4b049c8eeb7e2c to your computer and use it in GitHub Desktop.
SwiftOption
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
| struct SwiftOption: OptionSet { | |
| let rawValue: UInt | |
| static let none = SwiftOption(rawValue: 0) | |
| static let option1 = SwiftOption(rawValue: 1) | |
| static let option2 = SwiftOption(rawValue: 1 << 1) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment