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.

Backend64_TablesFull

float.Backend64_TablesFull
pub const Backend64_TablesFull = struct

File

lib/std/fmt/float.zig:690

Code

pub const Backend64_TablesFull = struct {
    const T = u64;
    const mulShift = mulShift64;
    const POW5_INV_BITCOUNT = FLOAT64_POW5_INV_BITCOUNT;
    const POW5_BITCOUNT = FLOAT64_POW5_BITCOUNT;

    const bound1 = 21;
    const bound2 = 63;
    const adjust_q = false;

    fn computePow5(i: u32) [2]u64 {
        return FLOAT64_POW5_SPLIT[i];
    }

    fn computeInvPow5(i: u32) [2]u64 {
        return FLOAT64_POW5_INV_SPLIT[i];
    }
}