commonMain.StateProperty.kt Maven / Gradle / Ivy
package pt.lightweightform.lfkotlin
/** Computed "state property". */
public interface StateProperty
/** Synchronous computed "state property". */
public interface SyncStateProperty : StateProperty {
/** Synchronously returns the value of a state property. */
public fun Context.property(): T
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy