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.
Warning. This struct is not part of the stable API.
See gcd_extended
for documentation.