Pattern: Missing use of while
loop
Issue: -
Prefer while
loops instead of for
loops without an initializer and incrementor.
Rationale: Simplifies the readability of the loop statement, while maintaining the same functionality.
Pattern: Missing use of while
loop
Issue: -
Prefer while
loops instead of for
loops without an initializer and incrementor.
Rationale: Simplifies the readability of the loop statement, while maintaining the same functionality.