您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }