11a3482970
#KT-38632 Fixed
13 lines
362 B
Plaintext
Vendored
13 lines
362 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'map{}.min()'"
|
|
// INTENTION_TEXT_2: "Replace with 'asSequence().map{}.min()'"
|
|
fun getMinLineWidth(lineCount: Int): Double {
|
|
val <caret>min_width = (0..lineCount - 1)
|
|
.map { getLineWidth(it) }
|
|
.min()
|
|
?: Double.MAX_VALUE
|
|
return min_width
|
|
}
|
|
|
|
fun getLineWidth(i: Int): Double = TODO()
|