You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Basics] Switch IdentifiableSet to use OrderedDictionary (swiftlang#7630)
### Motivation:
Turns `IdentifiableSet` into an ordered collection which should cut on
flakiness in tests and other spots that expect certain ordering of
elements.
### Modifications:
Changes `storage` of `IdentifiableSet` from `Dictionary` to
`OrderedDictionary`.
### Result:
Less flakiness throughout.
0 commit comments