#[no_mangle]
pub extern "C" fn nstd_math_pow_f64(
    x: NSTDFloat64,
    exp: NSTDInt32
) -> NSTDFloat64
Available on crate feature nstd_math only.
Expand description

Raises x to an integral power.

Parameters:

  • NSTDFloat64 x - The value.

  • NSTDInt32 exp - The exponent.

Returns

NSTDFloat64 pow - x raised to the power of exp.