blob: 92f465986742e38e48e7490f446b30b4a2b369df [file] [log] [blame]
// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'max()'"
// IS_APPLICABLE_2: false
fun getMaxLineWidth(list: List<Float>): Float {
val <caret>max = list.max()
?: 0.0f
return max
}