Range

data class Range(val startIndex: Int, val length: Int)

Defines a range of elements in a list.

Constructors

Link copied to clipboard
constructor(startIndex: Int, length: Int)

Properties

Link copied to clipboard
val length: Int

How many elements are inside this range.

Link copied to clipboard

The start index of this change range.