Is there any recoverCatching in the Either.catch a...
# arrow
d
Is there any recoverCatching in the Either.catch api (something like in Kotlin's Result, where you can chain a few potentially failing operations and still have a fallback), w/o nesting catches?
s
Could you give an example with Result?
c
It's essentially
leftFlatMap
but I don't know if Arrow has that
d
There's also mapCatching in Result that might be more like leftFlatMap