我想知道是否存在在flatMap
中忽略结果的函数(在scala或cat中)。例如:
Some("ignore this").ignoreArgumentFlatMap(Some("result"))
将与]相同>
Some("ignore this").flatMap(_ => Some("result"))
我想知道是否有一个函数(在scala或cat中),它忽略了flatMap中的结果。例如。 Some(“ ignore this”)。ignoreArgumentFlatMap(Some(“ result”))与Some(“ ...
在猫中被称为>>
。>>
scala> Option("ignore this") >> Some("result")
res14: Option[String] = Some(result)