is there something like `parZip` that just returns...
# arrow
c
is there something like
parZip
that just returns a
TupleN
?
something like
Copy code
val (foo, bar, baz) = parTuple(
  {getFoo()},
  {getBar()},
  {getBaz()},
)
s
No, we haven't provided such aliases out-of-the-box since this would blow up the binary if we'd have to do that for all zipping functions.
c
Ok, thanks 🙂