gpt4 book ai didi

scala - 在scala中压缩不等长列表

转载 作者:行者123 更新时间:2023-12-02 06:34:32 25 4
gpt4 key购买 nike

我想要这样的东西:

def unequalZip[A, B](a: Iterable[A], b: Iterable[B]) = Iterable[(Option[A], Option[B])]

使用 Nones

将较短迭代中的项目与较长迭代中的项目匹配

最佳答案

你想要

a.zipAll(b, None, None)

如果您已经有选择,或者

a.map(x => Option(x)).zipAll(b.map(x => Option(x)), None, None)

否则。

关于scala - 在scala中压缩不等长列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22974490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com