Class

IntervalList.Interval

The interval holder.

Common
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.