Documentation ¶
Index ¶
Constants ¶
const IntSize = strconv.IntSize
IntSize is the bit-size of the data-type for the targeted platform.
const MaxInt int = math.MaxInt
MaxInt is the maximum int value for the targeted platform. Other constants for data-types can be found in package `math` package.
const MaxUint uint = math.MaxUint
MaxUint is the maximum uint value for the targeted platform. Other constants for data-types can be found in package `math` package.
const MinInt int = math.MinInt
MinInt is the minimum int value for the targeted platform. Other constants for data-types can be found in package `math` package.
const UintSize = bits.UintSize
UintSize is the bit-size of the data-type for the targeted platform.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Equaler ¶
Equaler defines `Equal` for implementation-level equality testing, in case Go's native comparable or identity comparison does not suffice.
type Integer ¶
type Integer interface { UnsignedInteger | SignedInteger }
type Signed ¶
type Signed interface { SignedInteger | Float }