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
{{ message }}
This repository was archived by the owner on Oct 4, 2020. It is now read-only.
More efficient toUnfoldable without the Ord constraint
Keep a List of Maps as the unfold state, instead of a single Map.
Unioning Maps was linear time (making the entire function quadratic?).
Prepending to a List is constant time and doesn't require an `Ord k` instance.
0 commit comments