Expand description
External iterators for generic mathematics
Compatibility
The num-iter crate is tested for rustc 1.8 and greater.
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
startbystep - 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
startand 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
startand continuing forever bystep. - Return an iterator over the range [start, stop] by
step. It handles overflow by stopping.