Skip to content

Instantly share code, notes, and snippets.

@andrevidela
Last active January 7, 2019 14:42
Show Gist options
  • Save andrevidela/4d81bee55a32b815db72a10ced40743b to your computer and use it in GitHub Desktop.
Save andrevidela/4d81bee55a32b815db72a10ced40743b to your computer and use it in GitHub Desktop.
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