Skip to content

Instantly share code, notes, and snippets.

View jnewc's full-sized avatar

Jack Newcombe jnewc

View GitHub Profile
@jnewc
jnewc / yolo.swift
Created August 15, 2020 17:15
More natural (fight me) OptionSet syntax for Swift
func |<T>(_ first: T, _ second: T) -> T where T: OptionSet {
return first.union(second)
}