NAND
Boolean
The NAND node takes in two value inputs (either a bool or a number value), and functions as both a logical NAND or bitwise NAND depending on the type used.
- If any or none of the inputs are true, then the result will be true. - If both inputs are true, then the result is false.
Inputs
A (Pseudo-generic)
The first input value.
B (Pseudo-generic)
The second input value.
Outputs
* (Pseudo-generic)
Returns the result of a logical NAND of A
and B
if the node is a bool type, bitwise NAND otherwise.
See Also
- Wikipedia's definition of logical NAND & nand gate.