🌈 Create new beautiful Compose Gradients with our new wesite ->
Class

IntervalList.Interval

The interval holder.

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.