is kotlin.coroutines diprycted yet, why i am askin...
# coroutines
a
is kotlin.coroutines diprycted yet, why i am asking this is kotlinx.coroutines are used rather than kotlin.coroutines(from standard-lib)
e
no, it is not deprecated, kotlinx.coroutines builds on top of kotlin.coroutines infrastructure
a
Ah, so it is the base for coroutines 🤔
g
Yes, Kotlin.coroutines is stdlib includes only basic primitives
😃 1
e
kotlinx.coroutines = structured concurrency. kotlin.coroutines = basic suspend/resume/context support, used by kotlinx.coroutines and also other non-concurrency use case such as @kotlin.DeepRecursiveFunction and kotlin.sequences.sequence()
😃 1