Method lrs::num::W32::div_rem

Divides this integer by another one and returns both the quotient and the remainder.

Syntax

impl W32 {
    fn div_rem(self, other: u32) -> (W32, W32)
}

Arguments

NameDescription
other

The divisor.

Return value

Returns the quotient and the remainder.