fn scalbn(x: anytype, n: i32) @TypeOf(x)

Returns a * FLT_RADIX ^ exp.

Zig only supports binary base IEEE-754 floats. Hence FLT_RADIX=2, and this is an alias for ldexp.

Parameters

x: anytype,
n: i32,