Boolean Nodes
- Updated2023-02-17
- 1 minute(s) read
Boolean Nodes
Computes the logical AND of the inputs. If all inputs are True, this node returns True. Otherwise, it returns False.
Returns True if all the elements in the input array are True or if the array is empty. Otherwise, this node returns False.
Computes the logical exclusive or (XOR) of the inputs. If all inputs are True or all inputs are False, this node returns False. Otherwise, it returns True.
Negates the first input and then computes the logical OR of the second input and the negated input.
Computes the logical negation of the input. If the input is False, this node returns True. If the input is True, this node returns False.
Computes the logical NAND of the inputs. If all inputs are True, this node returns False. Otherwise, it returns True.
Computes the logical negation of the logical exclusive or (XOR) of the inputs. If all inputs are True or all inputs are False, this node returns True. Otherwise, it returns False.
Computes the logical NOR of the inputs. If all inputs are False, this node returns True. Otherwise, it returns False.
Computes the logical OR of the inputs. If all inputs are False, this node returns False. Otherwise, it returns True.
Returns False if all the elements in the input array are False or if the array is empty. Otherwise, this node returns True.