fn nextAfterInt(comptime T: type, x: T, y: T) T
fn nextAfterInt(comptime T: type, x: T, y: T) T { comptime assert(@typeInfo(T) == .int or @typeInfo(T) == .comptime_int); return if (@typeInfo(T) == .int and @bitSizeOf(T) < 2) // Special case for `u0`, `i1`, and `u1`. y else if (y > x) x + 1 else if (y < x) x - 1 else y; }