import { type Num } from "https://deno.land/x/rimbu@1.1.0/typical/index.ts";
const { DivMod } = Num;
Returns a tuple containing the quotient and remainer of dividing the first number by the second.
Examples
Example 1
Example 1
DivMod<9, 5> => [1, 4]
DivMod<9, 3> => [3, 0]
definition: N2 extends 0 ? never : N1 extends 0 ? [0, 0] : N1 extends N2 ? [1, 0] : StrNum.Divide<StrNum.FromNumber<N1>, StrNum.FromNumber<N2>> extends [infer Q, infer R] ? [StrNum.ToNumber<string & Q>, StrNum.ToNumber<string & R>] : never