import { type GreaterThanOrEqual } from "https://deno.land/x/rimbu@1.1.0/typical/num.ts";
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