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.

BinaryAnnotationOpcode

pdb.BinaryAnnotationOpcode
pub const BinaryAnnotationOpcode = enum(u8)

File

lib/std/pdb.zig:634

Code

pub const BinaryAnnotationOpcode = enum(u8) {
    invalid = 0,
    code_offset = 1,
    change_code_offset_base = 2,
    change_code_offset = 3,
    change_code_length = 4,
    change_file = 5,
    change_line_offset = 6,
    change_line_end_delta = 7,
    change_range_kind = 8,
    change_column_start = 9,
    change_column_end_delta = 10,
    change_code_offset_and_line_offset = 11,
    change_code_length_and_code_offset = 12,
    change_column_end = 13,
}