github.com/insomniacslk/u-root@v0.0.0-20200717035308-96b791510d76/cmds/core/elvish/util/limits.go (about) 1 package util 2 3 // Limit values for uint and int. 4 // 5 // NOTE: The math package contains similar constants for explicitly sized 6 // integer types, but lack those for uint and int. 7 const ( 8 MaxUint = ^uint(0) 9 MinUint = 0 10 MaxInt = int(MaxUint >> 1) 11 MinInt = -MaxInt - 1 12 )