Vectors |
Vector: orThe{{ or }} vector is a simple way perform a logical OR operation. If all conditions in the vector
evaluate to true, then the vector returns 1. Othwise it returns 0.The following values all evaluate to false:
Everything else evaluates to true. Examples{{ and: true | true }} returns 1{{ and: true | false | true | true }} returns 0 |