Given a sequence of eithers Seq[Either[String,A]] with Left being an error message. I want to obtain an Either[String,Seq[A]] where I
Seq[Either[String,A]]
Left
Either[String,Seq[A]]
Here is the scalaz code:
_.sequence