gpt4 book ai didi

scala - 模式匹配数组与 Either

转载 作者:行者123 更新时间:2023-12-04 18:11:33 25 4
gpt4 key购买 nike

说我有一些代码:

def foo(s:String):Either[Bar, Baz] = // some code here ... 

我想将其用作:
val a = Array("a", "b", "c")
a.map(foo) match {
case something => // should match when all elements in array are of type Right
case _ =>
}

谁能建议“某事”的代码

编辑:更喜欢匹配和使用 Right[Bar,Baz] 的数组直接,而不必在匹配后提取。

最佳答案

使用 forall检查数组中所有元素是否为isRight的方法:

a.map(foo) match {
case eithers if eithers.forall(_.isRight) =>
case _ =>
}

关于您的评论,如果您想要一次匹配并转换为正确,请尝试使用自定义提取器:
object RightArrayExtractor {
def unapply(eithers: Array[Either[Bar, Baz]]) =
eithers.foldLeft(Option(Vector[Right[Bar, Baz]]())) {
case (Some(z), x @ Right(_)) => Some(z :+ x)
case (None, _) => None
case (_, Left(x)) => None
}
}

a.map(foo) match {
case RightArrayExtractor(eithers) => // eithers is a Vector[Right[Bar,Baz]]
case _ =>
}

关于scala - 模式匹配数组与 Either,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12540881/

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