& (LogiX node)
(Redirected from &)
Jump to navigation
Jump to search
& | ||
---|---|---|
![]() | ||
Inputs | ||
Bool | A | |
Bool | B | |
Outputs | ||
Bool | * |
The & node performs the logical AND operation on inputs A and B.
Usage
When spawned from the node browser, this node accepts the int datatype by default, but it is more commonly used to work with Boolean values (True/False). The outputs will be True if, and only if, all inputs are True - otherwise it will output False. This node will accept some numeric datatypes, in which case it performs the operation in a bitwise manner.
Examples
Boolean Comparisons
Bitwise Number Operations
A textual representation of the above image:
100101 | 37 & 011111 | 23 ------------- 000101 | 5