Or

library operator
ID: 85083721-a721-44bf-9b3c-a3903a580187
Emits true only if at least one of the given booleans A and B is true.
Takes two boolean values and emits false in case both values are false, and true otherwise.

Behavior

Test data showing the behavior of Or

True

It returns true if at least one of its inputs is true.

Input Output
{"a":true,"b":true} true
{"a":true,"b":false} true
{"a":false,"b":true} true
False

It returns false only if both inputs are false.

Input Output
{"a":false,"b":false} false

Implementation

The implementation of Or makes use of the following 1 operators.

1
Evaluates an expression.