fn u64_by_u64_div_rem(duo: u64, div: u64) -> (u64, u64)
Expand description

Divides duo by div and returns a tuple of the quotient and the remainder. checked_div and checked_rem are used to avoid bringing in panic function dependencies.