Dmitry Khalanskiy
Dmitry Khalanskiy
https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-main-coroutine-dispatcher/immediate.html states that, if `Dispatchers.Main.immediate` is supported, it behaves like `Dispatchers.Unconfined` when already in the correct execution context; otherwise, it should throw `UnsupportedOperationException`. However, this is not the case for...
Currently, there is no simple way to access the serializer that is generated for a enum class. For first-party code, there is a workaround (that is seemingly undocumented or at...
- [x] In several places, `x in A..B` is replaced with the non-idiomatic `x >= A && x
An attempt to mitigate #1205.
Originally implemented in #2461. I just cherry-picked it and made sure the project builds. Fixes https://github.com/Kotlin/kotlinx.coroutines/issues/2291
Fixes #192