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:
divisor
MUST NOT be empty.- The highest (most-significant) limb of
divisor
MUST be non-zero. divisor
andnumerator
MUST contain at least three limbs.numerator
MUST contain at at least as many elements asdivisor
.
§Panics
May panic if any condition of use is violated.