I'm curious, why's there no `zip` function in Arro...
# arrow
j
I'm curious, why's there no
zip
function in Arrow? Similar to
zipOrAccumulate
, but it would short-circuit on the first error.
s
That's simply
bind
, the problem with
zip
is that it needs to be defined for every arity and
bind
just naturally composes.
4
mind blown 1
arrow intensifies 1