Last active
January 7, 2019 15:21
-
-
Save andrevidela/6bfb99785a8366021d7cdc3a2d39edbb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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