Are Coroutines Stackful, or stackless?
# coroutines
c
Are Coroutines Stackful, or stackless?
e
coroutines are rewritten by the compiler to continuation passing style, so stackless
Kotlin runs on platforms that don't natively support suspension so there isn't the possibility of stackful coroutines anyway
1
c
How are suspensional functions in a coroutines are procesed? (Round Robin, etc. )
k
Dispatching coroutines is an implementation detail of a
Dispatcher
, and methods vary based on which dispatcher you use.