<@U0B8UEMV1> Maybe that answer (and `Either.catch ...
# arrow
b
@pakoito Maybe that answer (and
Either.catch {}
) should make it into the channel topic description? 😄
😂 1
p
"It's traverse, and if not it's sequence" would be my top hit
b
haha, that answer also comes up a lot in scala/cats
a
(might as well get it out the way 😁) what should I know about Either.catch()?
b
Either.catch()
is what should be used instead of
Try
p
it’s a suspend function since 0.10, which trips people off. They want an easy way to make try/catch into a datatype, we don’t encourage that without a marker that the function can indeed fail, which is what we use
suspend
for