11 lines
307 B
Zig
11 lines
307 B
Zig
|
const math = @import("index.zig");
|
||
|
const assert = @import("../debug.zig").assert;
|
||
|
|
||
|
pub fn inf(comptime T: type) -> T {
|
||
|
switch (T) {
|
||
|
f32 => @bitCast(f32, math.inf_u32),
|
||
|
f64 => @bitCast(f64, math.inf_u64),
|
||
|
else => @compileError("inf not implemented for " ++ @typeName(T)),
|
||
|
}
|
||
|
}
|