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
Fixes docs of Data.HashMap.Lazy.fromList: it takes O(n * log(n)) (#498)
Fixes the incorrect documentation in Data.HashMap.Lazy.fromList
/ Data.HashMap.Internal.fromList: This takes linearithmic time
rather than linear time, since we do n insertions, each of which
takes (assuming no collisions!) log32(n) steps as per the documentation
of insert.
Fixes#309
0 commit comments