import { type U } from "https://deno.land/x/rimbu@0.13.1/typical/mod.ts";
const { Not } = U;
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