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.

renderExpressions

Render all expressions in the slice, keeping empty lines where appropriate

Render.renderExpressions
fn renderExpressions(r: *Render, expressions: []const Ast.Node.Index, space: Space) Error!void

File

lib/std/zig/Ast/Render.zig:305

Code

fn renderExpressions(r: *Render, expressions: []const Ast.Node.Index, space: Space) Error!void {
    if (expressions.len == 0) return;
    try renderExpression(r, expressions[0], space);
    for (expressions[1..]) |expression| {
        try renderExtraNewline(r, expression);
        try renderExpression(r, expression, space);
    }
}