Returns a collector that returns true if the Iterable is equal to the other Iterable based on the equals function.
Type of items in the source.
The other Iterable to compare to.
A function that defines the sort order of the elements.
Collector that returns true if the Iterable is equal to the other Iterable based on the equals function.
const result = sequenceEqualsAsync([1, 2, 3])([1, 2, 3]);console.log(result); // true Copy
const result = sequenceEqualsAsync([1, 2, 3])([1, 2, 3]);console.log(result); // true
Returns a collector that returns true if the Iterable is equal to the other Iterable based on the equals function.