Created
February 19, 2015 06:18
-
-
Save masters3d/53f7f60264c80c8040d0 to your computer and use it in GitHub Desktop.
OverRide POW
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
func pow(lhs:Int, rhs:Int)->Double{ | |
return pow(Double(lhs),Double(rhs)) | |
} | |
func pow(lhs:Double, rhs:Int)->Double{ | |
return pow(lhs,Double(rhs)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment