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

```kotlin
class Interval<out T>
    internal constructor(
        /** The index of the first item in the interval. */
        val startIndex: Int,
        /** The amount of items in the interval. */
        val size: Int,
        /** The value representing this interval. */
        val value: T,
    )
```

The interval holder.