Can you please give me an example when to use OrderedSet instead of Set? I've run a couple of tests and even tho the immutable-js documentation says
Iteration order of a Set is undefined, however is stable
it seems element order within Set is always the same as the one in which elements were added.
That's what seems to be the sole benefit of the OrderedSet structure:
A type of Set that has the additional guarantee that the iteration order of values will be the order in which they were added.