Kotlin
Replace 'until' with '..<' operator
Info
New
Last modified: 03 December 2024Reports until
that can be replaced with ..<
operator.
Every until
to ..<
replacement doesn't change the semantic in any way.
The UX research shows that developers make ~20-30% fewer errors when reading code containing ..<
compared to until
.
Example:
fun main(args: Array<String>) {
for (index in 0 until args.size) {
println(index)
}
}
After the quick-fix is applied:
fun main(args: Array<String>) {
for (index in 0..<args.size) {
println(index)
}
}
- 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.
ReplaceUntilWithRangeUntil
This inspection only reports if the Kotlin language level of the project or module is 1.7 or higher.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Kotlin, 243.23126-IJ |
Thanks for your feedback!
Was this page helpful?