SubrangeIterator¶
An iterator that emits only a subrange of another iterable.
The subrange is specified by start and stop indices (where stop is exclusive) and a step size. Version 1.0.0
Ports/Properties¶
iterable¶
Data to iterate over.
curitem¶
Current item.
start¶
Start index of the range. Negative values count from the end.
stop¶
End index of the range. Negative values count from the end.
step¶
Step size of the range.
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.