All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
.step_by(0)
Calling .step_by(0) on an iterator panics. Consider using panic! if this is intentional.
panic!
[1, 2, 3].iter().step_by(0); for _ in (0..100).step_by(0) { // ... }
Iterator::step_by
std::iter::StepBy