Skip to main content

range

Function range 

Source
pub fn range<T>(start: T, end: T) -> impl Iterator<Item = T>
where T: Int,
Expand description

integer range. Equivalent to:

start..end