Skip to content

Instantly share code, notes, and snippets.

@andrevidela
Last active January 7, 2019 15:21
Show Gist options
  • Save andrevidela/6bfb99785a8366021d7cdc3a2d39edbb to your computer and use it in GitHub Desktop.
Save andrevidela/6bfb99785a8366021d7cdc3a2d39edbb to your computer and use it in GitHub Desktop.
infix operator **: MultiplicationPrecedence
protocol FancyMult {
associatedtype FancyVal
static func ** (lhs: Self, rhs: Self) -> FancyVal
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment