9 lines
209 B
Plaintext
Vendored
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
|
|
}
|