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
{{ message }}
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
Prior to #18163, the behavior was to sort based on the repr, meaning, that
{0, 5, 10}
is sorted as{0, 10, 5}
.After #18163, the order is non-deterministic and depends on how the set is constructed.
I think a better approach would be to hide the
meta
behind a typeclass instance: something like:Originally posted by @eric-wieser in #18075 (comment)
The text was updated successfully, but these errors were encountered: