Skip to content

And

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 AND 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 (And) false
(Assert.Is false :Break true)

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

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

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