-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
definition inside a for comprehension based on an Either fails to compile #5793
Comments
Imported From: https://issues.scala-lang.org/browse/SI-5793?orig=1 |
@retronym said: scala> either.right.map(x => x).map(x => x)
<console>:9: error: value map is not a member of Either[Int,Char] with Product with Serializable
either.right.map(x => x).map(x => x)
^
But You can enrich scala> implicit class RightBiasedEither[A, B](val e: Either[A, B]) extends AnyVal {
| def foreach[U](f: B => U): Unit = e.right.foreach(f)
| def map[C](f: B => C): Either[A, C] = e.right.map(f)
| def flatMap[C](f: B => Either[A, C]) = e.right.flatMap(f)
| }
defined class RightBiasedEither
scala>
scala> def f(c:Char):String = "ha"
f: (c: Char)String
scala> def either:Either[Int,Char] = Right('r')
either: Either[Int,Char]
scala> for {
| c <- either
| s = f(c)
| } yield s
res0: Either[Int,String] = Right(ha) |
Lee Mighdoll (mighdoll) said: That the stock unbiased Either requires a bit more syntax to use the RightProjection/LeftProjection is apparent from the api, but because of this design flaw it's hard to recommend Either. Is there an open issue on fixing Either? Or a consensus that it's not fixable? Seems like the standard lib should get some combination of a fix, interim documentation, or a replacement. |
@retronym said: https://groups.google.com/d/topic/scala-debate/K6wv6KphJK0/discussion |
Rob Dickens (robcd) said: Have just come up with a version of Either which fixes this. Please would you take a look and let me know what you think: http://robsscala.blogspot.co.uk/2012/05/fixing-scalaeither-leftrightmap-returns.html Cheers, Rob |
Including a definition in a for comprehension works if the comprehension is using Option, but the compiler complains about a for comprehension with Either (RightProjection).
Using for comprehensions makes for very readable code, and flowing though errors via Either seems like it ought to be the right thing to do.
Example:
The text was updated successfully, but these errors were encountered: