Module num::iter 
            
                [−]
            
        [src]
External iterators for generic mathematics
Structs
| Range | 
                              An iterator over the range [start, stop)  | 
                    
| RangeInclusive | 
                              An iterator over the range [start, stop]  | 
                    
| RangeStep | 
                              An iterator over the range [start, stop) by   | 
                    
| RangeStepInclusive | 
                              An iterator over the range [start, stop] by   | 
                    
Functions
| range | 
                              Returns an iterator over the given range [start, stop) (that is, starting at start (inclusive), and ending at stop (exclusive)).  | 
                    
| range_inclusive | 
                              Return an iterator over the range [start, stop]  | 
                    
| range_step | 
                              Return an iterator over the range [start, stop) by   | 
                    
| range_step_inclusive | 
                              Return an iterator over the range [start, stop] by   |