div_nxm_normalized

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 divisor and numerator MUST each be at least two limbs.
  • numerator MUST contain at at least as many elements as divisor.

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.