flatMapIndexedTo

abstract fun <R, C : MutableCollectionWrapper<in R>> flatMapIndexedTo(destination: C, transform: (index: Int, T) -> Iterable<R>): C

将 transform 函数应用于此数组的每个元素及其索引的结果,并将结果连接到目标集合中。

参考 kotlin.collections.flatMapIndexedTo

Return

目标集合

Parameters

R

结果元素类型

C

目标集合类型

destination

目标集合

transform

用于将元素及其索引转换为可迭代结果的函数