import { type Num } from "https://deno.land/x/rimbu@1.1.0/typical/index.ts";
const { Decr } = Num;
Decreases a positive number by 1, or if the number is not positive, returns never.
Examples
Example 1
Example 1
Dec<5> => 4
Dec<434> => 433
Dec<0> => never