Files
kotlin-fork/idea/testData/intentions/loopToCallChain/maxMin/max4.kt.after
T
2021-04-07 07:49:23 +03:00

9 lines
209 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'maxOrNull()'"
// IS_APPLICABLE_2: false
fun getMaxLineWidth(list: List<Float>): Float {
val <caret>max = list.maxOrNull()
?: 0.0f
return max
}