Function div_nxm
pub fn div_nxm(numerator: &mut [u64], divisor: &mut [u64])Expand description
⚠️ In-place Knuth long division with implicit normalization and reciprocals.
§Conditions of use:
- divisorMUST NOT be empty.
- The highest (most-significant) limb of divisorMUST be non-zero.
- divisorand- numeratorMUST contain at least three limbs.
- numeratorMUST contain at at least as many elements as- divisor.
§Panics
May panic if any condition of use is violated.