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