Divides this integer by another one and returns both the quotient and the remainder.
impl W32 { fn div_rem(self, other: u32) -> (W32, W32) }
The divisor.
Returns the quotient and the remainder.