this node is both logical and AND. maybe add examples for bitwise AND? later. |
m typo |
||
Line 18: | Line 18: | ||
=== A (Pseudo-generic) === | === A (Pseudo-generic) === | ||
First input. Can either be a[[Type:bool|boolean]] type or numerical type. | First input. Can either be a [[Type:bool|boolean]] type or numerical type. | ||
=== B (Pseudo-generic) === | === B (Pseudo-generic) === |
Revision as of 04:17, 7 June 2024
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 a boolean 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.