MutableLongState
-
Cmn
interface MutableLongState : LongState, MutableState
A value holder where reads to the longValue property during the execution of a Composable function cause the current RecomposeScope to subscribe to changes of that value. When the longValue property is written to and changed, a recomposition of any subscribed RecomposeScopes will be scheduled. If longValue is written to with the same value, no recompositions will be scheduled.
| See also | |
|---|---|
LongState |
|
mutableDoubleStateOf |
Summary
Extension functions |
||
|---|---|---|
inline operator Unit |
MutableLongState.setValue(Permits property delegation of |
Cmn
|
Extension functions
setValue
inline operator fun MutableLongState.setValue(
thisObj: Any?,
property: KProperty<*>,
value: Long
): Unit
Permits property delegation of vars using by for MutableLongState.