Home
last modified time | relevance | path

Searched defs:MutableStateFlow (Results 1 – 2 of 2) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
DStateFlow.kt158 public interface MutableStateFlow<T> : StateFlow<T>, MutableSharedFlow<T> { interface
187 public fun <T> MutableStateFlow(value: T): MutableStateFlow<T> = StateFlowImpl(value ?: NULL) in compareAndSet() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/flow/
DSharingStressTest.kt190 private fun MutableStateFlow<Int>.increment(delta: Int) { in <lambda>() method