const std = @import("std"); const expect = std.testing.expect; const math = std.math; fn ctz(x: anytype) usize { return @ctz(@TypeOf(x), x); } test "fixed" { testClz(); comptime testClz(); } fn testClz() void { expect(ctz(@as(u128, 0x40000000000000000000000000000000)) == 126); expect(math.rotl(u128, @as(u128, 0x40000000000000000000000000000000), @as(u8, 1)) == @as(u128, 0x80000000000000000000000000000000)); expect(ctz(@as(u128, 0x80000000000000000000000000000000)) == 127); expect(ctz(math.rotl(u128, @as(u128, 0x40000000000000000000000000000000), @as(u8, 1))) == 127); }