i have a quick question re: usage of `Either`. I’...
# arrow
j
i have a quick question re: usage of
Either
. I’m trying to write an extension method to concat two eithers.
Copy code
given Either<A, B> and Either<A, C>, return Either<List<A>, D>
i’m doing a bunch of http calls and just trying to compose them nicely.