running Reduce Indexed
abstract fun runningReduceIndexed(operation: (index: Int, acc: Char, Char) -> Char): ListWrapper<Char>
返回一个 ListWrapper,其中包含通过将给定操作顺序应用于 CharSequenceWrapper 的每个元素(以及其索引)和当前累积结果而获得的中间结果。
参考 kotlin.sequences.runningReduceIndexed
Return
一个新的 ListWrapper,其中包含中间结果。
Parameters
operation
用于将元素、其索引和累积结果组合的操作函数。