For the complete documentation index, see llms.txt.
aztec-nr - protocol_types::utils::for_loop

Module for_loop

Functions

  • Iterates between loop bounds and conditionally executes functions according to the below explanation, where:

    • min and max are dynamic loop bounds (known only at runtime).
    • MIN and MAX are static loop bounds (known at compile time).
  • Iterates between loop bounds and conditionally executes functions according to the below explanation, where:

    • max is a dynamic loop bound (known only at runtime).
    • MAX is a static loop bound (known at compile time).
  • Iterates between loop bounds and conditionally executes a function for min <= i < max, where:

    • min and max are dynamic loop bounds (known only at runtime).
    • MIN and MAX are static loop bounds (known at compile time).
  • Iterates between loop bounds and conditionally executes a function for min <= i < max, where:

    • max is a dynamic loop bound (known only at runtime).
    • MAX is a static loop bound (known at compile time).

Globals