Backward slice loop can use 'slices.Backward'
Reports reverse index loops over slices that can be replaced with slices.Backward.
In Go 1.23 and later, slices.Backward returns an iterator that ranges over a slice from the last element to the first. This removes manual index handling and helps avoid off-by-one errors.
Example:
To fix the code, use the Replace with range slices.Backward(s) quick-fix.
After the quick-fix is applied:
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
GoFixSlicesBackward- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
Inspection ID: GoFixSlicesBackward
Suppressing Inspection
You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:
More detailed instructions as well as other ways and options that you have can be found in the product documentation:
Inspection Details | |
|---|---|
By default bundled with: |