NOR
Operands
+
-
Boolean
The MultiNOR node takes in any number of value inputs (either a bool or a number value), and functions as both a logical NOR or bitwise NOR depending on the type used.
- If all inputs are false, then the result will be true. - If any input is true, then the result is false.
Inputs
Operands (Pseudo-generic)
The input values to do boolean calculations with.
Outputs
* (Pseudo-generic)
Returns the result of a logical NOR of all inputs if the node is a bool type, bitwise NOR otherwise.
See Also
- Wikipedia's definition of logical NOR & nor gate.