What is the recommended way of doing parallell pro...
# arrow
m
What is the recommended way of doing parallell processing with Arrow now? Kotlin's async? I see parTraverse gives IO, which I though would be replaced by coroutines/suspend now?
s
there is
parTraverse
for
Iterable
working with
suspend
note that this is under
arrow-fx-coroutines
module
👍 1
m
Ah, thanks, will try :)
It compiles, so then I assume parTraverse also works (as in Scala) : )