Searched defs:MutableStateFlow (Results 1 – 2 of 2) sorted by relevance
158 public interface MutableStateFlow<T> : StateFlow<T>, MutableSharedFlow<T> { interface187 public fun <T> MutableStateFlow(value: T): MutableStateFlow<T> = StateFlowImpl(value ?: NULL) in compareAndSet() method
190 private fun MutableStateFlow<Int>.increment(delta: Int) { in <lambda>() method