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.

U128

convert_eisel_lemire.U128
const U128 = struct

File

lib/std/fmt/parse_float/convert_eisel_lemire.zig:131

Code

const U128 = struct {
    lo: u64,
    hi: u64,

    pub fn new(lo: u64, hi: u64) U128 {
        return .{ .lo = lo, .hi = hi };
    }

    pub fn mul(a: u64, b: u64) U128 {
        const x = @as(u128, a) * b;
        return .{
            .hi = @as(u64, @truncate(x >> 64)),
            .lo = @as(u64, @truncate(x)),
        };
    }
}