0
我想創建的Either
實例中使用REPL例如asRight
:如何使用`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
嗎?
非常感謝!你是對的。我正在使用較早的版本。 – Michael