elvish/util/limits.go

9 lines
109 B
Go
Raw Normal View History

2016-02-20 03:31:54 +08:00
package util
const (
MaxUint = ^uint(0)
MinUint = 0
MaxInt = int(MaxUint >> 1)
MinInt = -MaxInt - 1
)