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
Even with the optimizations added in #404, we end up walking the tree twice. It would certainly be more efficient to walk the tree once, similarly to insert or delete.
unordered-containers/Data/HashMap/Internal.hs
Lines 1241 to 1247 in 26a1c33
Currently this code will attempt to delete keys that aren't present in the first place. Inserts could be more efficient too, compare
alterFEager
:unordered-containers/Data/HashMap/Internal.hs
Lines 1358 to 1392 in 26a1c33
The
Strict
version has the same problems.The text was updated successfully, but these errors were encountered: