are there any plans to include coroutines in the s...
# coroutines
d
are there any plans to include coroutines in the stdlib or will they always require an additional library?
v
kotlinx.coroutines
library is too large to be included in stdlib. Some small part of it (common interfaces and implementations) -- maybe, but no guarantees at this moment. Things like channels or actors are unlikely to be in stdlib.
d
I figured specific specialized functionality would still be required to import as libraries, but I thought basics like CommonPool and launch/async might make it into the stdlib at some point
But thank you for the reply