Chaining Either: Combining L1, R1 and L2, R2 to L1 | L2, R1 | R2

Is there a way to chain Either to go from Either<L1, R1> and Either<L2, R2> to Either<L1 | L2, R1 | R2>?
Was this page helpful?