pub const fn div_mod_u8(lhs: u8, rhs: u8) -> (u8, u8)
Expand description

Floored Div/Mod.

This is a convenience method like num_integer::div_mod_floor that performs division and mod in one go, returning both results as a tuple.