Is there anyway to set `NSThread.stackSize` when u...
# coroutines
b
Is there anyway to set
NSThread.stackSize
when using coroutines? Is NSThread even used? I'm trying to workaround a stack overflow in kotlinx.serialization. But how can I increase Worker stack size? Is it possible? https://youtrack.jetbrains.com/issue/KT-50870
g
Would it not be better to use tail recursion to prevent the stack overflow?
👌 1