Function compiler_builtins::int::specialized_div_rem::u32_by_u32_div_rem
source · fn u32_by_u32_div_rem(duo: u32, div: u32) -> (u32, u32)
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.