Rust Range
structs and anything that implements the Iterator
trait have a
step_by
method that allows you to iterate by a given number:
for i in (1..10).step_by(2) {
println!("i: {}", i);
}
Rust Range
structs and anything that implements the Iterator
trait have a
step_by
method that allows you to iterate by a given number:
for i in (1..10).step_by(2) {
println!("i: {}", i);
}