Hacker News new | ask | show | jobs
by IshKebab 848 days ago
You can't. `entry()` takes they key by value, not by reference:

https://doc.rust-lang.org/std/collections/hash_map/struct.Ha...

You might be getting confused because in that example the `HashMap` keys are references.

1 comments

My bad. That’s not been an issue in my code, as I use arenas to manage memory and never put an owning container as key in a HashMap.