Kotlin zip函数 合并成键值对
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kotlin zip函数 合并成键值对相关的知识,希望对你有一定的参考价值。
fun main()
val numbers1 = listOf<Int>(213, 4, 534, 646, 757, 8, 97, 9);
val numbers2 = listOf<Int>(214, 5, 535, 647, 758, 9, 98, 10);
val res=numbers1.zip(numbers2)
println(res)
注意 返回类型是这个
public infix fun <T, R> Iterable<T>.zip(other: Iterable<R>): List<Pair<T, R>> return zip(other) t1, t2 -> t1 to t2
List<Pair<T, R>>
以上是关于Kotlin zip函数 合并成键值对的主要内容,如果未能解决你的问题,请参考以下文章
MapReduce中combinepartitionshuffle的作用是什么