import { type Num } from "https://deno.land/x/rimbu@1.1.0/typical/index.ts";
const { IsPositive } = Num;
Returns true if the given number is positive (> 0), false otherwise
Examples
Example 1
Example 1
IsPositive<9> => true
IsPositive<0> => false
IsPositive<-5> => false
definition: GreaterThanOrEqual<N, 1>