Skip to content

Instantly share code, notes, and snippets.

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