Skip to content

Instantly share code, notes, and snippets.

@ZHocean123
Last active November 21, 2017 06:18
Show Gist options
  • Select an option

  • Save ZHocean123/3ac8480a08fdb1187e4b049c8eeb7e2c to your computer and use it in GitHub Desktop.

Select an option

Save ZHocean123/3ac8480a08fdb1187e4b049c8eeb7e2c to your computer and use it in GitHub Desktop.
SwiftOption
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