fn signed_pow(base: I256, exp: I256, width: Option<usize>) -> Option<Num>
Folds a signed base ** exp, returning None on a negative exponent or a magnitude that doesn’t fit the signed range (overflow ~ compile error).
base ** exp
None