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