We should probably consider what other extensions from
Iterable
can offer
par
variants. I guess many can be achieved through
parTraverse
, but that name is not idiomatic to what Kotlin users are used to in the
Iterable
extensions.
d
dave08
08/01/2023, 1:46 PM
Thanks for creating the issue! I was also thinking of some kind of combination between parMap { parZip { } } (maybe that's parTraverse?) that allows running concurrent functions to build list elements concurrently...
dave08
08/01/2023, 1:47 PM
(or should I just use parMap { parZip { } }, will that be problematic to nest them?)
r
raulraja
08/01/2023, 1:59 PM
I don't think there will be an issue nesting those, if there is that would be a bug.
👍🏼 1
👍🏾 1
raulraja
08/01/2023, 2:00 PM
parTraverse is what we call now
parMap
it used to be called parTraverse and is now deprecated.