AND
Operators
The And node functions as both a logical AND or bitwise AND depending on the type used.
Inputs
A (Pseudo-generic)
First input. Can either be aboolean type or numerical type.
B (Pseudo-generic)
Second input. Has the same type as A
.
Outputs
* (Pseudo-generic)
Logical AND of A
and B
if the node is a bool type, bitwise AND otherwise.
Examples
-
Example outputs of an AND node.