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.

cpu

kvx.cpu
pub const cpu = struct

File

lib/std/Target/kvx.zig:49

Code

pub const cpu = struct {
    pub const coolidge_v1: CpuModel = .{
        .name = "coolidge_v1",
        .llvm_name = null,
        .features = featureSet(&[_]Feature{
            .v3_1,
        }),
    };
    pub const coolidge_v2: CpuModel = .{
        .name = "coolidge_v2",
        .llvm_name = null,
        .features = featureSet(&[_]Feature{
            .v3_2,
        }),
    };
}