Является ли Either.right = Right и Either.Left = Left? - PullRequest
1 голос
/ 12 февраля 2020

На следующем сайте:

https://typelevel.org/cats/datatypes/either.html

представлено:

object EitherStyle {
  def parse(s: String): Either[Exception, Int] =
    if (s.matches("-?[0-9]+")) Either.right(s.toInt)
    else Either.left(new NumberFormatException(s"${s} is not a valid integer."))

  def reciprocal(i: Int): Either[Exception, Double] =
    if (i == 0) Either.left(new IllegalArgumentException("Cannot take reciprocal of 0."))
    else Either.right(1.0 / i)

  def stringify(d: Double): String = d.toString
}

Пока я получаю ошибку:

[error] /application/learningSBT/hello-world/src/main/scala/Main.scala:16:39: value right is not a member of object scala.util.Either
[error]     if (s.matches("-?[0-9]+")) Either.right(s.toInt)
[error]                                       ^
[error] /application/learningSBT/hello-world/src/main/scala/Main.scala:17:17: value left is not a member of object scala.util.Either
[error]     else Either.left(new NumberFormatException(s"${s} is not a valid integer."))
[error]                 ^
[error] /application/learningSBT/hello-world/src/main/scala/Main.scala:21:14: value left is not a member of object scala.util.Either
[error]       Either.left(new IllegalArgumentException("Cannot take reciprocal of 0."))
[error]              ^
[error] /application/learningSBT/hello-world/src/main/scala/Main.scala:22:17: value right is not a member of object scala.util.Either
[error]     else Either.right(1.0 / i)
[error]                 ^
[error] four errors found
[error] (Compile / compileIncremental) Compilation failed
[error] Total time: 2 s, completed Feb 12, 2020 10:25:02 AM

Однако, когда я заменил Either.right на Right и Either.left на Left, я получил следующий код:

object EitherStyle {
  def parse(s: String): Either[Exception, Int] =
    if (s.matches("-?[0-9]+")) Right(s.toInt)
    else Left(new NumberFormatException(s"${s} is not a valid integer."))

  def reciprocal(i: Int): Either[Exception, Double] =
    if (i == 0)
      Left(new IllegalArgumentException("Cannot take reciprocal of 0."))
    else Right(1.0 / i)

  def stringify(d: Double): String = d.toString
}

Итак, мне интересно, что делает это возможным.

1 Ответ

3 голосов
/ 12 февраля 2020

Это расширение кошек к стандартному Either объекту.

Импорт cats.syntax.either._, чтобы это работало.

...