Function div_nxm_normalized
pub unsafe fn div_nxm_normalized(numerator: &mut [u64], divisor: &[u64])Expand description
⚠️ In-place Knuth normalized long division with reciprocals.
§Safety
Following conditions of use MUST be met:
- 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.
In debug mode, panics if any condition of use is violated. In release, may panic or trigger UB if any condition of use is violated.
⚠️ This function is not part of the stable API.