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.
Zig › std/ › elf.zig › PT
PT
elf.PT
pub const PT = enum (Word )
File
Code
pub const PT = enum (Word ) {
NULL = 0 ,
LOAD = 1 ,
DYNAMIC = 2 ,
INTERP = 3 ,
NOTE = 4 ,
SHLIB = 5 ,
PHDR = 6 ,
TLS = 7 ,
_ ,
pub const NUM = @typeInfo (PT ).@"enum" .field_names .len ;
pub const LOOS : PT = @fromBackingInt (@intCast (0x60000000 ));
pub const HIOS : PT = @fromBackingInt (@intCast (0x6fffffff ));
pub const GNU_EH_FRAME : PT = @fromBackingInt (@intCast (0x6474e550 ));
pub const GNU_STACK : PT = @fromBackingInt (@intCast (0x6474e551 ));
pub const GNU_RELRO : PT = @fromBackingInt (@intCast (0x6474e552 ));
pub const LOSUNW : PT = @fromBackingInt (@intCast (0x6ffffffa ));
pub const HISUNW : PT = @fromBackingInt (@intCast (0x6fffffff ));
pub const SUNWBSS : PT = @fromBackingInt (@intCast (0x6ffffffa ));
pub const SUNWSTACK : PT = @fromBackingInt (@intCast (0x6ffffffb ));
pub const LOPROC : PT = @fromBackingInt (@intCast (0x70000000 ));
pub const HIPROC : PT = @fromBackingInt (@intCast (0x7fffffff ));
}