Function traverse::utils::range_step_inclusive [] [src]

pub fn range_step_inclusive<A: PrimInt>(
    start: A,
    stop: A,
    step: A
) -> RangeStepInclusive<A>

Return an iterator over the range [start, stop] by step. It handles overflow by stopping.