Zum Inhalt springen

Bool Or

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

Apply the Or operator on two or more boolean values.

PortDescription
The boolean values to apply the OR operator on.
PortDescription
The result of the boolean operation. true if at least one input value is true, false otherwise.

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

Input 1Input 2Output (1 OR 2)
000
011
101
111

ID: core/bool-or@v1