Skip to content

Instantly share code, notes, and snippets.

@jnewc
Created August 15, 2020 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnewc/536a35168f4d13495e65d0323df99e9e to your computer and use it in GitHub Desktop.
Save jnewc/536a35168f4d13495e65d0323df99e9e to your computer and use it in GitHub Desktop.
More natural (fight me) OptionSet syntax for Swift
func |<T>(_ first: T, _ second: T) -> T where T: OptionSet {
return first.union(second)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment