All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.fr.acinq.lightning.utils.channels.kt Maven / Gradle / Ivy

There is a newer version: 1.8.4
Show newest version
package fr.acinq.lightning.utils

import kotlinx.coroutines.flow.MutableStateFlow
import kotlin.reflect.KProperty

operator fun  MutableStateFlow.setValue(thisRef: Any?, property: KProperty<*>, value: T) {
    this.value = value
}

operator fun  MutableStateFlow.getValue(thisRef: Any?, property: KProperty<*>): T {
    return this.value
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy