Difference

sealed class Difference<T>(items: List<T>)

Base class for all differences types used in describing a change to a list via compare.

Inheritors

Constructors

Link copied to clipboard
protected constructor(items: List<T>)

Properties

Link copied to clipboard
var items: List<T>

The set of items in the list that "changed"

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
abstract fun <R> map(block: (T) -> R): Difference<R>