I got a tuple with Either values in it,
(Left "Error1", Right 1, Left "Error2", Right 2)
How can i convert this to
[Left "Error1", Right 1, Left "Error2", Right 2]
?
Since I want to do lefts on the list and get all Left values from
[Left "Error1", Right 1, Left "Error2", Right 2]
I have something like this with 38 values in the tuple, (Left "Error1", Right 1, Left "Error2", Right "NameString")
is it possible to get only the left values from the tuple?