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

```kotlin
interface Record<T>
```

## Properties

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

```kotlin
val currentValue: T
```

The value of the derived state retrieved without triggering a notification to read
observers.

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

```kotlin
val dependencies: ObjectIntMap<StateObject>
```

Map of the dependencies used to produce `value` or [currentValue](#currentvalue) to nested read level.

This map can be used to determine if the state could affect value of this derived state,
when a [StateObject](/jetpack-compose/androidx.compose.runtime/runtime/interfaces/StateObject) appears in the apply observer set.