Class

IntervalList.Interval

The interval holder.

Source set: Common

Added in 1.11.0-rc01

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.