Added NAND (#20930)

Added the logical operator NAND to the list of operators. NAND functions like NOT AND and returns a value of false only when both inputs are true.
This commit is contained in:
absentMindedDeveloper
2018-11-03 19:20:41 -07:00
committed by Christopher McCormack
parent 8b2c780949
commit e50a02c7e7

View File

@ -64,6 +64,15 @@ NOT operator:
| F | T |
| T | F |
NAND operator:
| x | y | x NAND y |
|---|---|---|
| F | F | T |
| F | T | T |
| T | F | T |
| T | T | F |
Implication operator:
| x | y | x IMPLY y |