RangeIterator¶
Iterate over a range of integers between start, and optionally stop, with a specified step size.
The range is by default excluding the stop value, unless inclusive is set to True. Beware: when you use this node in a script, create it with RangeIterator(stop=10) instead of RangeIterator(10), since the latter will create a node with a start value of 10, counting up indefinitely. Version 1.0.0
Ports/Properties¶
curvalue¶
Current value.
start¶
Start of the range.
stop¶
End of the range. If set to None, the range will be infinite.
step¶
Step size of the range.
inclusive¶
Whether the stop value is inclusive or exclusive.
verbose¶
Whether to print the current item to the console.
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.