pub fn div_nxm_normalized(numerator: &mut [u64], divisor: &[u64])
Expand description
⚠️ In-place Knuth normalized long division with reciprocals.
§Conditions of Use
- The highest (most-significant) bit of the divisor MUST be set.
- The
divisor
andnumerator
MUST each be at least two limbs. numerator
MUST contain at at least as many elements asdivisor
.
§Panics
May panic if any condition of use is violated.