structstd.zig.Zir.Inst.Param.Type[src]

Fields

body_len: u31

The body contains the type of the parameter.

is_generic: bool

Whether the type is generic, i.e. refers to one or more previous parameters.

Source Code

Source code
pub const Type = packed struct(u32) {
    /// The body contains the type of the parameter.
    body_len: u31,
    /// Whether the type is generic, i.e. refers to one or more previous parameters.
    is_generic: bool,
}