import { type Num } from "https://deno.land/x/rimbu@0.13.5/typical/mod.ts";
const { LessThan } = Num;
Returns true if the first given number is less than the second.
Examples
Example 1
Example 1
LessThan<5, 5> => false
LessThan<8, 5> => false
LessThan<3, 7> => true