Returns an iterator over the given range [start, stop) (that is, starting
at start (inclusive), and ending at stop (exclusive)).
Return an iterator over the infinite range starting at start
and continuing forever.
Return an iterator over the range [start, stop]
Return an iterator over the range [start, stop) by step
. It handles overflow by stopping.
Return an iterator over the infinite range starting at start
and continuing forever by step
.
Return an iterator over the range [start, stop] by step
. It handles overflow by stopping.