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.
pub fn mantissaType(comptime T: type) type
pub fn mantissaType(comptime T: type) type {
return switch (T) {
f16, f32, f64 => u64,
f80, f128 => u128,
else => unreachable,
};
}