elbaro

Results 21 comments of elbaro

`step_by_abc()` can be useful too. ``` for date in start.date()..=end.date() { ... } for date in (start.date()..=end.date()).step_by_month() { ... } for time in (start.time()..=end.time()).step_by_duration(Duration::from_secs(..)) { ... } for date in...