Aller au contenu

Bool And

Ce contenu n’est pas encore disponible dans votre langue.

Apply the And operator on two or more boolean values.

PortDescription
The boolean values to apply the AND operator on.
PortDescription
The result of the boolean operation. true if all input values are true, false otherwise.

Below is the truth table for the AND operator applied to two boolean values:

Input 1Input 2Output (1 AND 2)
000
010
100
111

ID: core/bool-and@v1