Struct core::ops::RangeFromExperimental [-]  [+] [src]

pub struct RangeFrom<Idx> {
    pub start: Idx,
}

A range which is only bounded below.

Fields

start

The lower bound of the range (inclusive).

Trait Implementations

impl<Idx: Clone + Step> Iterator<Idx> for RangeFrom<Idx>

fn next(&mut self) -> Option<Idx>

fn size_hint(&self) -> (uint, Option<uint>)

Derived Implementations

impl<Idx: Copy> Copy for RangeFrom<Idx>