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 has been archived by the owner on Oct 25, 2024. It is now read-only.
I see Foldable is implemented for AVLTree by converting to list first. This conversion is unnecessary overhead (and it's significant with many traversals).
There seem to be no implementations for Functor or Foldable for Map.
@heueristik Since Set is an alias for AVLTree writing for (acc := acc0) (x in set) {..} just works without converting set to list manually first (it should work with the most recent version of the containers library at least)
Now that we have
Foldable
andFunctor
traits, we could usefor
andmap
directly with the containers without converting them to/from lists.The text was updated successfully, but these errors were encountered: