Skip to content

Instantly share code, notes, and snippets.

@bjartwolf
Created August 21, 2013 08:05
Show Gist options
  • Save bjartwolf/6291602 to your computer and use it in GitHub Desktop.
Save bjartwolf/6291602 to your computer and use it in GitHub Desktop.
Not so sane way to do absolute values
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