Skip to content

Instantly share code, notes, and snippets.

@masters3d
Created February 19, 2015 06:08
Show Gist options
  • Save masters3d/797fb16172cc3494800c to your computer and use it in GitHub Desktop.
Save masters3d/797fb16172cc3494800c to your computer and use it in GitHub Desktop.
Power in Swift
infix operator ** { associativity left precedence 160 }
func ** (num: Double, power: Double) -> Double{
return pow(num, power)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment