Newer versions of Julia come with `Base.checked_pow(::Integer, ::Integer)`, which needs to be extended for FDs. This was introduced in https://github.com/JuliaLang/julia/pull/52849. The implementation just needs to forward to `Base.checked_power_by_squaring`.
Newer versions of Julia come with
Base.checked_pow(::Integer, ::Integer), which needs to be extended for FDs.This was introduced in JuliaLang/julia#52849.
The implementation just needs to forward to
Base.checked_power_by_squaring.