fn scalbn(x: anytype, n: i32) @TypeOf(x)
[src]
Returns a * FLT_RADIX ^ exp.
Zig only supports binary base IEEE-754 floats. Hence FLT_RADIX=2, and this is an alias for ldexp.
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.