A function used to compare two state objects for equality.
const customCompare: Comparator = (x: any, y: any) => { return x.id === y.id}@Select(selector, customCompare)
Whether the two state objects are equal.
The original state object.
The new state object.
Generated using TypeDoc
A function used to compare two state objects for equality.
Example
Returns
Whether the two state objects are equal.