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.

create

Fail.create
pub fn create(owner: *std.Build, error_msg: []const u8) *Fail

File

Code

pub fn create(owner: *std.Build, error_msg: []const u8) *Fail {
    const graph = owner.graph;
    const fail = graph.create(Fail);
    fail.* = .{
        .step = .init(.{
            .tag = base_tag,
            .name = "fail",
            .owner = owner,
        }),
        .error_msg = graph.addString(error_msg),
    };
    return fail;
}