You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

math.go 118B

1234567
  1. package common
  2. // Abs returns the absolute value of x.
  3. func Abs(x int64) int64 {
  4. y := x >> 63
  5. return (x ^ y) - y
  6. }