Control rules¶
Control-flow rules direct execution within a rule chain.
control-flow¶
- Break — Aborts the current execution path so the surrounding row is skipped.
- JumpIf — Jumps to a named
Markwhen the input value equals the given parameter. - JumpIfNot — Jumps to a named
Markwhen the input value does NOT equal the given parameter. - JumpTo — Unconditionally jumps to a named
Marklater in the rule chain. - Mark — Declares a labelled jump target reachable by
JumpIf,JumpIfNot, andJumpTo.