mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 10:57:50 +08:00
9 lines
109 B
Go
9 lines
109 B
Go
package util
|
|
|
|
const (
|
|
MaxUint = ^uint(0)
|
|
MinUint = 0
|
|
MaxInt = int(MaxUint >> 1)
|
|
MinInt = -MaxInt - 1
|
|
)
|