gpt4 book ai didi

scala - 在 Scala : Option[Array[Int]] 中组合包装元素

转载 作者:行者123 更新时间:2023-12-04 17:54:09 24 4
gpt4 key购买 nike

我正在尝试组合封装在 Option 中的数组:

val a = Option(Array(1, 2, 3))
val b = Option(Array(4,5))
val q = for {
x <- a
y <- b
} yield x ++ y

问题是如果 bNone 它返回 None 即使我想要 a。如果 aNone 编译器会提示 ++ 不是 Nothing 的成员(即使我期望接收 b)。这对标准库可行吗?还是我必须查看 Cats 或 Scalaz 中的半群?

我在 Cats 中尝试了以下方法,但无法正常工作:

Semigroup[Option[Array[Int]]].combine(a,b) // === a |+| b

它告诉我:

could not find implicit value for parameter ev: cats.kernel.Semigroup[Option[Array[Int]]]

结果类型应该与ab的类型相同。

最佳答案

(a ++ b).flatten.toArray

++ 方法不是 Option 类的一部分,但由于隐式转换,它在这里起作用。如果您看到 scala doc for Option ,它表示 This member is added by an implicit conversion from Option[A] to Iterable[A] performed by method option2Iterable in scala.Option.

因此,选项可以被视为可迭代对象。

关于scala - 在 Scala : Option[Array[Int]] 中组合包装元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39242858/

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