Internal
Create a new generator that yields numbers in the range [start, stop) if start < stop, and [stop, start] if start > stop, with a given step.
start
stop
step
The lower bound of the range
The upper bound of the range
The step size
A new generator that yields numbers in the range [start, stop)
Generated using TypeDoc
Create a new generator that yields numbers in the range [
start
,stop
) ifstart
<stop
, and [stop
,start
] ifstart
>stop
, with a givenstep
.