Function div_nx2_normalized
pub unsafe fn div_nx2_normalized(u: &mut [u64], d: u128) -> u128Expand description
⚠️ Compute double limb normalized division.
⚠️ This function is not part of the stable API.
Same as [`div_nx1`] but using [`div_3x2`] internally.
§Safety
- The divisor must be normalized (highest bit is set).
In debug, may panic if any condition of use is violated. In release, may panic or trigger UB if any condition of use is violated.