Function

setValue

Permits property delegation of vars using by for MutableDoubleState.

setValue

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

Permits property delegation of vars using by for MutableDoubleState.

setValue

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

Permits property delegation of vars using by for MutableFloatState.

setValue

Source set: 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

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

Permits property delegation of vars using by for MutableIntState.

setValue

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

Permits property delegation of vars using by for MutableLongState.

Last updated: