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.

mantissaType

Returns the underlying storage type used for the mantissa of floating-point type. The output unsigned type must have at least as many bits as the input floating-point type.

common.mantissaType
pub fn mantissaType(comptime T: type) type

File

Code

pub fn mantissaType(comptime T: type) type {
    return switch (T) {
        f16, f32, f64 => u64,
        f80, f128 => u128,
        else => unreachable,
    };
}