What would be a not too painful way of turning a homogeneous tuple of Result<T,E>
into a single Result
containing a tuple of Ok
s, or the first Err
? That is to say
(Ok(a), Ok(b), Ok(3)) -> Ok((a, b, c))
(Ok(a), Err(b), Ok(c)) -> Err(b)
(Ok(a), Err(b), Err(c)) -> Err(b)
In other words, I want Haskell's sequence
(traverse id
) on a (Traversable
) tuple of Either
s.
(The tuple will always have 3 elements.)