div_nx1

Function div_nx1 

pub fn div_nx1(limbs: &mut [u64], divisor: u64) -> u64
Expand description

⚠️ Compute single limb division.

⚠️ This function is not part of the stable API.
The highest limb of `numerator` and `divisor` must be nonzero. The divisor does not need normalization. See algorithm 7 from [MG10].

§Panics

May panic if the above requirements are not met.