Skip to content

Instantly share code, notes, and snippets.

View owensd's full-sized avatar

David Owens II owensd

View GitHub Profile
// See: https://devforums.apple.com/message/1000934#1000934
import Foundation
// Logic
operator prefix ¬ {}
@prefix func ¬ (value: Bool) -> Bool {
return !value
}