Zum Inhalt springen

Bool And

Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.

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