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.

ScanContainerResult

AstGen.ScanContainerResult
const ScanContainerResult = struct

File

lib/std/zig/AstGen.zig:12856

Code

const ScanContainerResult = struct {
    /// Includes unnamed declarations (e.g. `comptime` decls)
    decls_len: u32,
    fields_len: u32,
    any_field_aligns: bool,
    any_field_values: bool,
    any_comptime_fields: bool,
    /// Whether there is a field named `_` (indicating a non-exhaustive enum)
    has_underscore_field: bool,
}