gitee.com/zhongguo168a/gocodes@v0.0.0-20230609140523-e1828349603f/myx/mathutil/const.go (about)

     1  package mathutil
     2  
     3  const UINT_MIN uint = 0
     4  const UINT_MAX = ^uint(0)
     5  const INT_MAX = int(^uint(0) >> 1)
     6  const INT_MIN = ^INT_MAX
     7  
     8  const INT32_MAX = int(^uint32(0) >> 1)
     9  const INT32_MIN = ^INT32_MAX