Created
August 21, 2013 08:05
-
-
Save bjartwolf/6291602 to your computer and use it in GitHub Desktop.
Not so sane way to do absolute values
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 InSaneAbs (num int) int { | |
y := num>>63 | |
return (num ^ y) - y | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment