Skip to content

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 Mark when the input value equals the given parameter.
  • JumpIfNot — Jumps to a named Mark when the input value does NOT equal the given parameter.
  • JumpTo — Unconditionally jumps to a named Mark later in the rule chain.
  • Mark — Declares a labelled jump target reachable by JumpIf, JumpIfNot, and JumpTo.