Function fmt [src]
Prototype
pub fn fmt( self: Instruction.Index, function: Function.Index, builder: *Builder, flags: FormatFlags, ) std.fmt.Alt(FormatData, format)
Parameters
self: Instruction.Index
function: Function.Index
builder: *Builder
flags: FormatFlags
Source
pub fn fmt(
self: Instruction.Index,
function: Function.Index,
builder: *Builder,
flags: FormatFlags,
) std.fmt.Alt(FormatData, format) {
return .{ .data = .{
.instruction = self,
.function = function,
.builder = builder,
.flags = flags,
} };
}