nand()
nand<
A
>(a
): <B
>(b
) =>boolean
Logical !(a && b)
. Logical Non-conjunction
Type Parameters
• A
Parameters
a
A
The first value to compare.
Returns
Function
Type Parameters
• B
Parameters
b
B
Returns
boolean
See
https://en.wikipedia.org/wiki/Sheffer_stroke
Remark
pure function
Example
nand(true)(0);
// true