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