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.

Proc2

log_f128.Proc2
pub const Proc2 = struct

File

lib/compiler_rt/log_f128.zig:87

Code

pub const Proc2 = struct {
    // exp(-1 / 16) rounded down
    pub const lo: f128 = 0.939413062813475786119710824622305;
    // exp(1 / 16) rounded up
    pub const hi: f128 = 1.0644944589178594295633905946428897;

    pub const Poly = struct {
        b1_hi: f128,
        b1_lo: f128,
        b3: f128,
        b5: f128,
        b7: f128,
        b9: f128,
        b11: f128,
        b13: f128,
        b15: f64,
        b17: f64,
        b19: f64,
    };

    poly: Poly,
}