import { type Num } from "https://deno.land/x/rimbu@0.13.5/typical/index.ts";
const { GreaterThan } = Num;
Returns true if the first given number is greater than the second.
Examples
Example 1
Example 1
GreaterThan<5, 5> => false
GreaterThan<8, 5> => true
GreaterThan<3, 7> => false
definition: N1 extends N2 ? false : GreaterThanOrEqual<N1, N2>