Function

setValue

Permits property delegation of vars using by for [MutableDoubleState].

setValue

Common
public inline operator fun MutableDoubleState.setValue(
    thisObj: Any?,
    property: KProperty<*>,
    value: Double,
)

Permits property delegation of vars using by for MutableDoubleState.


setValue

Common
public inline operator fun MutableFloatState.setValue(
    thisObj: Any?,
    property: KProperty<*>,
    value: Float,
)

Permits property delegation of vars using by for MutableFloatState.


setValue

Common
public inline operator fun <T> MutableState<T>.setValue(
    thisObj: Any?,
    property: KProperty<*>,
    value: T,
)

Permits property delegation of vars using by for MutableState.


setValue

Common
public inline operator fun MutableIntState.setValue(
    thisObj: Any?,
    property: KProperty<*>,
    value: Int,
)

Permits property delegation of vars using by for MutableIntState.


setValue

Common
public inline operator fun MutableLongState.setValue(
    thisObj: Any?,
    property: KProperty<*>,
    value: Long,
)

Permits property delegation of vars using by for MutableLongState.