diff
inline fun <T> Iterable<T>.diff(other: Iterable<T>, noinline comparisonFun: (T?, T?) -> Boolean): Diff<T>
Compare this with the other one in principle when other is newer than this
Parameters
compare
Will be used to determine changed values
Compare this with the other one in principle when other is newer than this
Parameters
strict
If true, will use strict (===) comparison for the values' comparison. Otherwise, standard equals will be used