Bool And
Apply the And operator on two or more boolean values.
Inputs#
| Port | Description | 
|---|---|
| The boolean values to apply the ANDoperator on. | 
Outputs#
| Port | Description | 
|---|---|
| The result of the boolean operation. trueif all input values aretrue,falseotherwise. | 
Addendum#
Example#
Below is the truth table for the AND operator applied to two boolean values:
| Input 1 | Input 2 | Output (1 AND 2) | 
|---|---|---|
| 0 | 0 | 0 | 
| 0 | 1 | 0 | 
| 1 | 0 | 0 | 
| 1 | 1 | 1 | 
ID: bool-and@v1