下面是返回ReaderT的函数定义:
def f1:ReaderT[FailFast, Map[String,String], Boolean] = ReaderT(_ => Right(true))
def f2:ReaderT[FailFast, Map[String,String], Boolean] = ReaderT(_ => Left(List("d")))
def f3:ReaderT[FailFast, Map[String,String], Boolean] = ReaderT(_ => Right(true))
def f4:ReaderT[FailFast, Map[String,String], Boolean] = ReaderT(_ => Right(true))我想把它们结合起来。f1和f2被用作一元效果。但f3和f4的计算结果必须进行累加。我尝试实现的东西看起来像这样:
def fc:ReaderT[FailFast, Map[String,String], Boolean] =
f1.flatMap( b1 => {
if (b1)
for {
b2 <- f2
b3 <- Semigroupal.tuple2[FailSlow, Boolean, Boolean](
f3, // how to convert it to validated here without run?
f4 // how to convert it to validated here without run?
).toEither
} yield b3
else ReaderT(_ => Right(true))
})如果存在多个选项,请同时提供两个选项
发布于 2019-04-09 00:13:04
试一试
import cats.instances.either._
import cats.instances.list._
type FailSlow[A] = Validated[List[String], A]
type FailFast[A] = Either[List[String], A]
def fc:ReaderT[FailFast, Map[String,String], (Boolean, Boolean)] =
f1.flatMap( b1 => {
if (b1)
for {
b2 <- f2
b3 <- Semigroupal.tuple2(
f3.mapF(Validated.fromEither),
f4.mapF(Validated.fromEither)
).mapF(_.toEither)
} yield b3
else ReaderT(_ => Right(true, true))
})https://stackoverflow.com/questions/55376183
复制相似问题