2

我正在尝试创建一个在 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
                 ^

上面的代码有什么问题?是否可以asRight在 REPL 中使用?

4

1 回答 1

7

EitherIdOps其中包括asRightasLeftops 最初是在 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)
于 2017-03-11T17:14:13.543 回答