Skip to content

Bool Or

Apply the Or operator on two or more boolean values.

Inputs#

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

Outputs#

Port Description
The result of the boolean operation. true if at least one input value is true, false otherwise.

Addendum#

Example#

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

Input 1 Input 2 Output (1 OR 2)
0 0 0
0 1 1
1 0 1
1 1 1

ID: bool-or@v1