Update

class Update<V>(    index: Int,     val oldValue: V,     val newValue: V) : IViewableList.Event<V>

Constructors

Link copied to clipboard
fun <V> Update(    index: Int,     oldValue: V,     newValue: V)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val index: Int
Link copied to clipboard
val newValue: V
Link copied to clipboard
val newValueOpt: V?

Returns the new value for add or update events, or null for removal events.

Link copied to clipboard
val oldValue: V