## What problem are you trying to solve? Broaden the applicability of the recently added `PreferIncrementOperator`. ## Example ``` lastEnd = lastEnd + startIndex + i + 1; ``` could be transformed to ``` lastEnd += startIndex + i + 1; ```
What problem are you trying to solve?
Broaden the applicability of the recently added
PreferIncrementOperator.Example
could be transformed to