Produces the result(s) of performing a logical OR operation on multiple values (or multiple pairs of values).
<or true,false>
produces true
.
<or true,true,true>
produces true
.
<or true,false with=true>
produces true,true
.
<or true,false with=false>
produces true,false
.
<or true with=false,true,false>
produces true,true,true
.
<or true,true,false with={},{something},150>
produces true,true,true
.
In a logical OR operation between two values, the result is true if at least one of the values evaluates to true. For the or tag, more than 2 values may be specified in a single comparison, in which case at least one of the values must be true for the result to be true.