Pipeline.Step.Loop (pipeline v0.0.1)

View Source

Advanced loop step executor - handles for_loop and while_loop operations.

Provides iteration capabilities with:

  • Nested loop support with proper variable scoping
  • Parallel execution for independent iterations
  • Loop control flow (break, continue, early termination)
  • Performance optimization for large datasets
  • Memory management for long-running loops

Summary

Functions

create_nested_loop_context(iterator_name, item, index, total, context)

execute(step, context)

Execute a loop step (for_loop or while_loop).