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.

refAllDecls

Given a type, references all the declarations inside, so that the semantic analyzer sees them.

testing.refAllDecls
pub fn refAllDecls(comptime T: type) void

File

lib/std/testing.zig:1213

Code

pub fn refAllDecls(comptime T: type) void {
    if (!builtin.is_test) return;
    inline for (comptime std.meta.declarations(T)) |decl_name| {
        _ = &@field(T, decl_name);
    }
}