import { type Num } from "https://deno.land/x/rimbu@1.1.0/typical/mod.ts";
const { GreaterThanOrEqual } = Num;
Returns true if the given first natural number is greater or equal than the second. Returns never otherwise.
Examples
Example 1
Example 1
GreaterThanOrEqual<15, 12> => true
GreaterThanOrEqual<15, 6> => never