pub fn div_nxm_normalized(numerator: &mut [u64], divisor: &[u64])
Expand description

⚠️ In-place Knuth normalized long division with reciprocals.

Requires

  • the highest bit of the divisor to be set,
  • the divisor and numerator to be at least two limbs, and
  • numerator is at least as long as divisor.

§Panics

May panic if the above requirements are not met.