Skip to content

Bool And

Apply the And operator on two or more boolean values.

Inputs#

Port Description
The boolean values to apply the AND operator on.

Outputs#

Port Description
The result of the boolean operation. true if all input values are true, false otherwise.

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