Function gcd
pub fn gcd<const BITS: usize, const LIMBS: usize>(
a: Uint<BITS, LIMBS>,
b: Uint<BITS, LIMBS>,
) -> Uint<BITS, LIMBS>
Expand description
⚠️ Lehmer’s GCD algorithms.
⚠️ This function is not part of the stable API.
See [`gcd_extended`] for documentation.