enumstd.math.big.int.TwosCompIntLimit[src]

Used to indicate either limit of a 2s-complement integer.

Fields

min
max

Source Code

Source code
pub const TwosCompIntLimit = enum {
    // The low limit, either 0x00 (unsigned) or (-)0x80 (signed) for an 8-bit integer.
    min,

    // The high limit, either 0xFF (unsigned) or 0x7F (signed) for an 8-bit integer.
    max,
}