我正在尝试使用REPL中的Either
创建asRight
的实例:
import cats._
import cats.data._
import cats.implicits._
scala> val x = "xxx".asRight
<console>:20: error: value asRight is not a member of String
val x = "xxx".asRight
^
scala> import cats.syntax.either._
import cats.syntax.either._
scala> val x = "xxx".asRight
<console>:23: error: value asRight is not a member of String
val x = "xxx".asRight
^
上面的代码出了什么问题?是否可以在REPL中使用asRight
?
答案 0 :(得分:6)
EitherIdOps
和asRight
操作的 asLeft
首先在cat 0.9.0(编写本文时的最新版本)中引入。您最有可能使用早期版本。
scala> import cats._, implicits._
import cats._
import implicits._
scala> "xxx".asRight
res0: Either[Nothing,String] = Right(xxx)
scala> "xxx".asRight[Int]
res1: Either[Int,String] = Right(xxx)