flatMap所在位置是kotlin.text.flatMap,其相關用法介紹如下。

用法:

inline fun <R> CharSequence.flatMap(
    transform: (Char) -> Iterable<R>
): List<R>

返回對原始 char 序列的每個字符調用的 transform 函數的結果產生的所有元素的單個列表。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val list = listOf("123", "45")
println(list.flatMap { it.toList() }) // [1, 2, 3, 4, 5]
//sampleEnd
}

輸出:

[1, 2, 3, 4, 5]