aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math/inf.zig
blob: 86ff2455332ed188f7a9f9d4fbb6e5d598afa810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const std = @import("../std.zig");
const math = std.math;

/// Returns value inf for the type T.
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)),
    };
}