Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
loopToCallChain
/
maxMin
/
max4.kt.after
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
}