Last active
January 7, 2019 14:41
-
-
Save andrevidela/980caa7477a0b7a1229ed74f34a6a047 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
extension Double: Multiplicative { | |
static var multId: Double { return 1.0 } | |
} | |
extension Double: Additive { | |
static var addId: Double { | |
return 0.0 | |
} | |
} | |
extension Double: SquareRoot { | |
static prefix func √ (square: Double) -> Double { | |
return sqrt(square) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment