---
title: "MutableIntState"
description: "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
[RecomposeScope]s will be scheduled. If [intValue] is written to with the same value, no
recompositions will be scheduled."
type: "interface"
---

<div class='type'>Interface</div>


<a id='references'></a>

<div class='sourceset sourceset-common'>Common</div>



```kotlin
@JvmDefaultWithCompatibility
public interface MutableIntState : IntState, MutableState<Int>
```


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
`RecomposeScope`s will be scheduled. If `intValue` is written to with the same value, no
recompositions will be scheduled.


## Properties

<div class='sourceset sourceset-common'>Common</div>


```kotlin
@get:AutoboxingStateValueProperty("intValue")
@set:AutoboxingStateValueProperty("intValue")
override var value: Int
```


<div class='sourceset sourceset-common'>Common</div>


```kotlin
override var intValue: Int
```



