Package: effect
Module: Predicate
Combines two predicates with a logical “NAND” (negated AND). The resulting predicate
returns true if at least one of the predicates returns false.
This is equivalent to not(and(p, q)).
Signature
declare const nand: { <A>(that: Predicate<A>): (self: Predicate<A>) => Predicate<A>; <A>(self: Predicate<A>, that: Predicate<A>): Predicate<A>; }
Since v2.0.0