Bool Xand
Ce contenu n’est pas encore disponible dans votre langue.
Apply the Xand operator on two or more boolean values.
Inputs
Section titled “Inputs”| Port | Description |
|---|---|
The boolean values to apply the AND operator on. |
Outputs
Section titled “Outputs”| Port | Description |
|---|---|
The result of the boolean operation. true if all input values are true, false otherwise. |
Addendum
Section titled “Addendum”Example
Section titled “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: core/bool-xand@v1