Function scalbn

Source
pub fn scalbn(x: f64, exp: isize) -> f64
Expand description

scalbn multiplies their first argument x by FLT_RADIX (probably 2) to the power of exp, that is:

x * FLT_RADIX ** exp