Function fixed_powi_float_value

Source
fn fixed_powi_float_value<S: Semantics>(
    base: IeeeFloat<S>,
    exp: i32,
) -> Option<IeeeFloat<S>>
Expand description

Returns Some(output) if powi (called pown in C) results in a fixed value specified in the C standard (specifically, C23 annex F.10.4.6) when doing base^exp. Otherwise, returns None.