Created
January 7, 2019 14:17
-
-
Save andrevidela/6174652d00a296cb6b92e8d046eb84ff 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
// Ints are Multiplicative, the identity is 1 | |
extension Int: Multiplicative { | |
static var multId: Int { | |
return 1 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment