Mikołaj Kąkol
kotin-coroutines-native-mt
mutation attempt of frozen kotlinx.coroutines.flow.StateFlowImpl
@Test fun testSingleThreadWithFreeze() { val f = MutableStateFlow(1) f.value = 2 f.freeze() f.value = 3 runBlocking { f.take(1).collect { println("got $it") } println("got ${f.value}") } }
kotest
turbine
implementation(Libs.Kotlin.coroutines) { version { strictly(Versions.Kotlin.coroutines) } }
A modern programming language that makes developers happier.