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

用法:

inline fun <R> CharSequence.scanIndexed(
    initial: R, 
    operation: (index: Int, acc: R, Char) -> R
): List<R>

返回一個列表,其中包含通過從左到右將 operation 應用於每個字符、其在原始字符序列中的索引以及以 initial 值開頭的當前累加器值而生成的連續累加值。

請注意,傳遞給operation 函數的acc 值不應被改變;否則會影響結果列表中的前一個值。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val strings = listOf("a", "b", "c", "d")
println(strings.scan("s") { acc, string -> acc + string }) // [s, sa, sab, sabc, sabcd]
println(strings.scanIndexed("s") { index, acc, string -> acc + string + index }) // [s, sa0, sa0b1, sa0b1c2, sa0b1c2d3]

println(emptyList<String>().scan("s") { _, _ -> "X" }) // [s]
//sampleEnd
}

輸出:

[s, sa, sab, sabc, sabcd]
[s, sa0, sa0b1, sa0b1c2, sa0b1c2d3]
[s]

參數

operation- 獲取字符索引、當前累加器值和字符本身的函數,並計算下一個累加器值。