pub fn div_nx1(limbs: &mut [u64], divisor: u64) -> u64
⚠️ Compute single limb division.
The highest limb of numerator and divisor must be nonzero. The divisor does not need normalization. See algorithm 7 from MG10.
numerator
divisor
May panics if the above requirements are not met.