mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
11 lines
334 B
Zig
11 lines
334 B
Zig
const std = @import("../index.zig");
|
|
const math = std.math;
|
|
|
|
pub fn inf(comptime T: type) T {
|
|
return switch (T) {
|
|
f16 => @bitCast(f16, math.inf_u16),
|
|
f32 => @bitCast(f32, math.inf_u32),
|
|
f64 => @bitCast(f64, math.inf_u64),
|
|
else => @compileError("inf not implemented for " ++ @typeName(T)),
|
|
};
|
|
}
|