Guest User

Untitled

a guest
Nov 22nd, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. struct SwiftOption: OptionSet {
  2. let rawValue: UInt
  3. static let none = SwiftOption(rawValue: 0)
  4. static let option1 = SwiftOption(rawValue: 1)
  5. static let option2 = SwiftOption(rawValue: 1 << 1)
  6. }
Add Comment
Please, Sign In to add comment