Module num::iter

source ·

Structs§

  • An iterator over the range [start, stop)
  • An iterator over the infinite range starting at start
  • An iterator over the range [start, stop]
  • An iterator over the range [start, stop) by step. It handles overflow by stopping.
  • An iterator over the infinite range starting at start by step
  • An iterator over the range [start, stop] by step. It handles overflow by stopping.

Functions§

  • 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.