Package: effect
Module: Predicate
Combines two predicates with a logical “NOR” (negated OR). The resulting predicate
returns true only if both predicates return false.
This is equivalent to not(or(p, q)).
Signature
declare const nor: { <A>(that: Predicate<A>): (self: Predicate<A>) => Predicate<A>; <A>(self: Predicate<A>, that: Predicate<A>): Predicate<A>; }
Since v2.0.0