They do because the standard library implementation was changed to use Hashbrown. However the standard library API has a slight limitation in that you can't get say "I have a reference to a string. If there's an entry for it, give me that. Otherwise clone the string and insert a new entry. Also only do one key lookup."
You end up either having to do two lookups or always cloning the string even if you ended up not needing it.
You end up either having to do two lookups or always cloning the string even if you ended up not needing it.