gpt4 book ai didi

等效于 callIfNotEmpty 的 Scala 选项

转载 作者:行者123 更新时间:2023-12-01 08:55:03 25 4
gpt4 key购买 nike

是否有任何 Option 函数等效于:

def callIfNotEmpty[T](option: Option[T], fun: (T) => Unit): Unit = option match {
case Some(x) => fun(x)
case None =>
}

这可以称为:

option.callIfNotEmpty((optionValue) => fun(optionValue))

最佳答案

尝试使用 foreach。例如:

option.foreach(println)

来自 docs :

final def foreach[U](f: (A) ⇒ U): Unit

Apply the given procedure f to the option's value, if it is nonempty.

Option 代码顶部甚至还有注释:

The most idiomatic way to use an scala.Option instance is to treat it as a collection or monad and use map, flatMap, filter, or foreach

回想一下,Option 可以隐式转换为 Iterable,因此您通常可以使用集合上的任何内容!

关于等效于 callIfNotEmpty 的 Scala 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28595216/

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