What is this ?
This library aims to be a collection of iterators for improved performance or convenience.
StepRangeU* and StepRangeI*
These are equivalent to ranges but with a constant step size.
Variants exist for u8, u32, i8, isize, etc.
// The odd positive integers from 1 to 1000 the traditional way.
let _ = .step_by;
// The odd positive integers from 1 to 1000 with a constant step size.
let _ = new;
// If you really want to you can also do this... but don't.
let _ = new.step_by;