Function num_iter::range [−][src]
pub fn range<A>(start: A, stop: A) -> Range<A>ⓘwhereNotable traits for Range<A>impl<A> Iterator for Range<A> where
A: Add<A, Output = A> + PartialOrd + Clone + ToPrimitive, type Item = A;
A: Add<A, Output = A> + PartialOrd + Clone + One,
Expand description
Returns an iterator over the given range [start, stop) (that is, starting at start (inclusive), and ending at stop (exclusive)).
Example
let array = [0, 1, 2, 3, 4]; for i in num_iter::range(0, 5) { println!("{}", i); assert_eq!(i, array[i]); }