goto function-pos(a==true, b, c)
Group |
Checks if a is true and continues processing the function chain at position b if that is the case or at position b otherwise. A jump back to a previous position is not possible and will lead to an error.
Description of Parameters
Parameter |
Description |
a |
Value to be checked. |
b |
Position to continue processing if a is true. |
c |
Position to continue processing if a is not true. |
Examples
Parameter a |
Parameter b |
Parameter c |
Processing Continues At Function Chain Position |
true |
3 |
10 |
3 |
false |
3 |
10 |
10 |