Firstly, I have a (infinite) list of Eithers, which is produced like this:
x :: A
...
f :: A -> Either B A
...
xs :: [Either B A]
xs = iterate (>>=f) (Right x)
The list will contain several Rights (always a finite number) and then the same Left value repeated. What I need is to take all the Rights and one Left after them. In this particular case it can be done also by changing the function for example, but I'm also interested in best general method.
xsof type[A]? – is7s Oct 16 '12 at 18:38