Dmitry Khalanskiy

Results 122 issues of 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...

design
test

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...

feature

- [x] In several places, `x in A..B` is replaced with the non-idiomatic `x >= A && x

Originally implemented in #2461. I just cherry-picked it and made sure the project builds. Fixes https://github.com/Kotlin/kotlinx.coroutines/issues/2291

postponed

Fixes #192