import { type Not } from "https://deno.land/x/rimbu@1.1.0/typical/utils.ts";
Returns true if the input type is false, and false if the input type is true.
Examples
Example 1
Example 1
Not<true> => false
Not<false> => true
Not<boolean> => never