-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hash
implementation
#177
Comments
Going deeper, I see that |
The keys are sorted into a tree, but the tree will be balanced differently depending on insertion order, so hashes would differ. If you are fine with matching objects with keys at insertion order then adding Hash impl should be pretty straight forward (at least in the new implementation, which is much cleaner, though still quite a bit in flux). |
When can we expect this new implementation to be released? Can we follow its development somewhere? |
Even if See rust-lang/rust#48366 for an implementation of Hash on an unordered data structure. |
I need to organize
JsonValue
s into aHashSet
however I just noticed thatJsonValue
does not implement theHash
trait. Is there a reason for that?The text was updated successfully, but these errors were encountered: