Returns the binary exponent of x as an integer.
Special Cases:
pub fn ilogb(x: anytype) i32
pub fn ilogb(x: anytype) i32 { const T = @TypeOf(x); return ilogbX(T, x); }