Method lrs::num::W64::div_rem

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

Syntax

impl W64 {
    fn div_rem(self, other: u64) -> (W64, W64)
}

Arguments

NameDescription
other

The divisor.

Return value

Returns the quotient and the remainder.