-
Notifications
You must be signed in to change notification settings - Fork 29
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
Tracking: missing compatibility with std::HashMap
& std::HashSet
#32
Comments
Hi @virtualritz, on my end I'll try in my projects replacing occurrences of |
It seems the only things missing are On a sidenote: these aliases and their traits are also behind a Furthermore They also have a newtype wrapper, I suggest to rename the type alias That way replacing use ahash::{HashMap, HashMapExt}; becomes: use gxhash::{HashMap, HashMapExt}; Does that make sense? I could have a PR ready in the next hour. I'm on a train home and bored. :] |
I checked in a few projects and I came up to the same conclusion (missing I'd say |
I'm looking into both (the changes and the |
There is a PR (#35) that should close this issue. Unless you wanto to copy |
I just looked into replacing
ahash
withgxhash
elsewhere and ran intoHashMap::new()
missing.I reckon there may be more. I'll have a look later and may add some PRs to this issue. I'd keep it open until I'm certain the
gxhash
containers are full drop-in replacements for thestd
versions.The text was updated successfully, but these errors were encountered: