Equal

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

Indicates that a region of the original list compared via compare is unchanged.

Constructors

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

Inherited 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 <R> map(block: (T) -> R): Difference<R>
Link copied to clipboard
open override fun toString(): String

Inherited functions

Link copied to clipboard
open override fun hashCode(): Int