Struct core::iter::RangeUnstable
[-]
[+]
[src]
pub struct Range<A> {
// some fields omitted
}An iterator over the range [start, stop)
Trait Implementations
impl<A: Int + ToPrimitive> Iterator<A> for Range<A>
impl<A: Int + ToPrimitive> DoubleEndedIterator<A> for Range<A>
Int is required to ensure the range will be the same regardless of
the direction it is consumed.