pub const fn dd_division(
    duo: (Digit, Digit),
    div: (Digit, Digit)
) -> ((Digit, Digit), (Digit, Digit))
Expand description

Divides duo by div and returns the quotient and remainder.

§Panics

If div == 0, this function will panic.