作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当您的计算步骤是独立的时,应用仿函数经常被提及作为 monad 的替代品。他们经常提到的优点之一是,当您想堆叠应用程序时不需要转换器,因为 F[G[X]]
始终也是一个应用。
假设我有以下功能:
def getDataOption(): Option[Data]
def getUserFuture(): Future[User]
def process(data: Data, user: User)
Future[Option[User]]
和
Future[Option[Data]]
并用
process
映射它.
Applicative[Future]
.compose[Option]
.map2(
Applicative[Future].pure(getDataOption()),
getUserFuture().map(Applicative[Option].pure))(process)
最佳答案
这里最困难的是类型推断。这是我能做的最好的
// for the Applicative[Future[Option[?]]
import cats.Applicative
implicit val fo = {
import cats.std.future._
import cats.std.option._
Applicative[Future].compose[Option]
}
// for the |@| syntax
import cats.syntax.cartesian._
// to guide type inference
type FutureOption[A] = Future[Option[A]]
((Future(getDataOption): FutureOption[Data]) |@|
getUserFuture.map(Option.apply)).map(process _)
关于scala - 如何在 Scala 中堆叠应用仿函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36751784/
我是一名优秀的程序员,十分优秀!