Skip to content

Instantly share code, notes, and snippets.

@andrevidela
Created April 14, 2017 12:09
Show Gist options
  • Save andrevidela/65e443273d1d6092e8bf383dcd719115 to your computer and use it in GitHub Desktop.
Save andrevidela/65e443273d1d6092e8bf383dcd719115 to your computer and use it in GitHub Desktop.
prefix operator ¬
prefix func ¬ (op: Bool) -> Bool {
return !op
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment