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