is there any type of `Iterable<T>.forEachCon...
# coroutines
m
is there any type of
Iterable<T>.forEachConcurrently
?
e
What is it supposed to do? And how is it supposed to integrate with an arbitrary (potentially non-cocurrent) iterable?
Note that you can do:
iterable.forEach { launch(CommonPool) { ... } }
i'm not sure if that is what you want or is it something else?
m
Yes, I think a
forEach
with
launch
is about what I'm looking for. I'll take a closer look. Thanks.