zig/std/math/inf.zig

13 lines
320 B
Zig
Raw Normal View History

const std = @import("../index.zig");
const math = std.math;
pub fn inf(comptime T: type) T {
return switch (T) {
f16 => math.inf_f16,
f32 => math.inf_f32,
f64 => math.inf_f64,
f128 => math.inf_f128,
else => @compileError("inf not implemented for " ++ @typeName(T)),
};
}