Files
kotlin-fork/idea/testData/intentions/loopToCallChain/maxMin/max4.kt
T
2016-08-23 22:47:42 +03:00

11 lines
240 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'max()'"
// IS_APPLICABLE_2: false
fun getMaxLineWidth(list: List<Float>): Float {
var max = 0.0f
<caret>for (item in list) {
max = Math.max(item, max)
}
return max
}