Function ruint::algorithms::div::div_nxm_normalized
source · pub fn div_nxm_normalized(numerator: &mut [u64], divisor: &[u64])
Expand description
⚠️ In-place Knuth normalized long division with reciprocals.
Requires
- the highest bit of the divisor to be set,
- the
divisor
andnumerator
to be at least two limbs, and numerator
is at least as long asdivisor
.
§Panics
May panic if the above requirements are not met.