pub fn strict_mod_exp<T>(base: T, exponent: &T, modulus: &T) -> TExpand description
ยงModular Exponentiation (Strict)
Most constrained version that works with references. Requires
OverflowingAdd and OverflowingSub traits to be implemented, and
all multiplication contraints as well.