Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

Block

A labeled block or a loop. When this block is broken from, consumes_res_ptr should be set if the break expression consumed the result pointer.

AstRlAnnotate.Block
const Block = struct

File

lib/std/zig/AstRlAnnotate.zig:56

Code

const Block = struct {
    parent: ?*Block,
    label: ?[]const u8,
    is_loop: bool,
    ri: ResultInfo,
    consumes_res_ptr: bool,
}