ZipIterator¶
An iterator that iterates over two or more source iterators and emits a list of items (one from each source iterator) with each update.
Can be used to iterate over multiple collections or iterators in parallel, for instance with a ForEach loop. This node will stop iterating when the shortest source iterator is exhausted, unless the longest option is enabled. Version 1.0.0
Ports/Properties¶
curitems¶
Current list of items.
iterable1¶
Data to iterate over.
iterable2¶
Data to iterate over.
iterable3¶
Data to iterate over.
iterable4¶
Data to iterate over.
iterable5¶
Data to iterate over.
iterable6¶
Data to iterate over.
iterable7¶
Data to iterate over.
iterable8¶
Data to iterate over.
iterable9¶
Data to iterate over.
iterableN¶
Additional iterables.
longest¶
Generate as many outputs as there are in the longest sequence. Fills the remaining outputs with None if the sequences are not of the same length.
iterable0¶
Data to iterate over.
set_breakpoint¶
Set a breakpoint on this node. If this is enabled, your debugger (if one is attached) will trigger a breakpoint.
metadata¶
User-definable meta-data associated with the node. Usually reserved for technical purposes.
verbose¶
Whether to print the current item to the console.