Skip to content

Or

Name - Description Default Type
<input> The first operand to be evaluated. Bool
<output> The output of this shard will be its input. Bool

Computes the logical OR between the input of this shard and the output of the next shard.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
false (Or) false
(Assert.Is false :Break true)

false (Or) true
(Assert.Is true :Break true)

true (Or) false
(Assert.Is true :Break true)

true (Or) true
(Assert.Is true :Break true)