Item

data class Item<T>(val index: Int, val value: T)

Represents an item consisting of its associated current index as well as its value.

Instances of this class are part of the ItemList QueryResult and are passed to the comboboxItem brick in order for it to know which item it represents.

Constructors

Link copied to clipboard
constructor(index: Int, value: T)

Properties

Link copied to clipboard
val index: Int
Link copied to clipboard
val value: T