structstd.zig.llvm.Builder.Constant.Integer[src]

Fields

type: Type
limbs_len: u32

Values

Constantlimbs[src]

Source Code

Source code
pub const limbs = @divExact(@bitSizeOf(Integer), @bitSizeOf(std.math.big.Limb))

Source Code

Source code
pub const Integer = packed struct(u64) {
    type: Type,
    limbs_len: u32,

    pub const limbs = @divExact(@bitSizeOf(Integer), @bitSizeOf(std.math.big.Limb));
}