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