Diff Adapter
abstract class DiffAdapter<T>(val items: MutableList<T>, val comparison: (first: T, second: T) -> Boolean = { first, second ->
first.hashCode() == second.hashCode()
})(source)
Inheritors
Constructors
Link copied to clipboard
constructor(items: MutableList<T>, comparison: (first: T, second: T) -> Boolean = { first, second ->
first.hashCode() == second.hashCode()
})