Tagged Questions
The either tag has no wiki summary.
18
votes
4answers
3k views
Using Either to process failures in Scala code
Option monad is a great expressive way to deal with something-or-nothing things in Scala. But what if one needs to log a message when "nothing" occurs? According to the Scala API documentation,
...
12
votes
1answer
233 views
Trying to implement Data.Either
To help me learn Applicative Functors and Functors I thought it would be good fun to see how Either is implemented with the typeclasses Functor and Applicative. Obviously I could just go ahead and ...
5
votes
3answers
463 views
how do I process returned Either
if a scala function is
def A(): Either[Exception, ArrayBuffer[Int]] = {
...
}
what should be the right way to process the returned result?
val a = A()
and ?
5
votes
2answers
604 views
Why this Either-monad code does not type check?
instance Monad (Either a) where
return = Left
fail = Right
Left x >>= f = f x
Right x >>= _ = Right x
this code frag in 'baby.hs' caused the horrible compilation ...
3
votes
3answers
176 views
Best way to turn a Lists of Eithers into an Either of Lists?
I have some code like the below, where I have a list of Eithers, and I want to turn it into an Either of Lists ... in particular (in this case), if there are any Lefts in the list, then I return a ...
3
votes
4answers
265 views
Using 'Either' in Haskell
I have two values, t1 and t2, of type Either String Type. The Left-value is used for error handling. These values are used in a function which returns Either String Type.
What I want to do is check ...
3
votes
1answer
190 views
Scala - Define type for Either for compactness or write it explicitly for readability?
In Scala, I can have:
trait Api {
def someApiCall: Either[Failure, GoodResult];
}
or
object SomeObject {
type SomeResult = Either[Failure, GoodResult]
}
trait Api {
def someApiCall: ...
3
votes
3answers
406 views
Is there no standard (Either a) monad instance?
I was under the impression that there was an instance for Either a somewhere, but I can't seem to find it. I have tried importing Control.Monad, Control.Monad.Instances and Data.Either as shown
...
2
votes
4answers
214 views
Can I ask an Either whether it is Left (or Right)?
I know I can usually just pattern match, but sometimes I would find these functions useful:
isLeft = either (const True) (const False)
isRight = either (const False) (const True)
Is there ...