ComfyUI Node
Map Start Ovum
Start of a map loop that builds an accum by automatically adding each per-iteration result.
Map Start Ovum
- py_list
- init_accum
- flow_control
- remaining_list
- accum
- value
- index
- array
Categoryovum/loop
Inputs (2)
| Name | Type | Default | Description |
|---|---|---|---|
| py_list | ITEM_LIST | A list containing items to be processed iteratively. | |
| init_accumopt | * | Initial value for the accumulator (accum) before processing items. |
Outputs (6)
| Name | Type | Description |
|---|---|---|
| flow_control | FOREACH_LIST_CONTROL | Pass ForeachListEndOvum as is to indicate the end of the iteration. |
| remaining_list | ITEM_LIST | Output the ITEM_LIST containing the remaining items during the iteration, passing ForeachListEndOvum as is to indicate the end of the iteration. |
| accum | * | Output the accumulated results during the iteration. |
| value | * | Output the current item during the iteration. |
| index | INT | The index of the current item (starting at 0). |
| array | ITEM_LIST | An immutable copy of the input list. |