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

用法:

@JvmName("flatMapIndexedIterable") inline fun <R> CharSequence.flatMapIndexed(
    transform: (index: Int, Char) -> Iterable<R>
): List<R>

返回從在每個字符上調用的 transform 函數的結果產生的所有元素的單個列表,以及它在原始字符序列中的索引。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val data: List<String> = listOf("Abcd", "efgh", "Klmn")
val selected: List<Boolean> = data.map { it.any { c -> c.isUpperCase() } }
val result = data.flatMapIndexed { index, s -> if (selected[index]) s.toList() else emptyList() }
println(result) // [A, b, c, d, K, l, m, n]
//sampleEnd
}

輸出:

[A, b, c, d, K, l, m, n]