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.

MaxRss

Configuration.MaxRss
pub const MaxRss = enum(u32)

File

lib/std/Build/Configuration.zig:1464

Code

pub const MaxRss = enum(u32) {
    none = 0,
    _,

    pub fn toBytes(mr: MaxRss) u64 {
        const x: usize = @backingInt(mr);
        return x << 8;
    }

    pub fn fromBytes(bytes: u64) MaxRss {
        return @fromBackingInt(@intCast(bytes >> 8));
    }
}