Last active
January 7, 2019 14:42
-
-
Save andrevidela/4d81bee55a32b815db72a10ced40743b 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 for scalar multiplication operation | |
protocol Scalar { | |
associatedtype ScalarVal | |
static func ◊ (_ lhs: ScalarVal, _ rhs: Self) -> Self | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment