structstd.zig.Zir.Inst.ArrayMul[src]

Fields

res_ty: Ref

The result type of the array multiplication operation, or .none if none was available.

lhs: Ref

The LHS of the array multiplication.

rhs: Ref

The RHS of the array multiplication.

Source Code

Source code
pub const ArrayMul = struct {
    /// The result type of the array multiplication operation, or `.none` if none was available.
    res_ty: Ref,
    /// The LHS of the array multiplication.
    lhs: Ref,
    /// The RHS of the array multiplication.
    rhs: Ref,
}