goto function-pos(a equals true, b, c)

Prev Next

This function 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.

Parameters

Parameter

Description

a

Value to be checked.

b

Function position to continue processing at if a is true. Example: 2.

c

Function position to continue processing at if a is not true. Example: 4.

Examples

Parameter a

Parameter b

Parameter c

Processing continues at function chain position

true

3

10

3

false

3

10

10