
6 Feb
2011
6 Feb
'11
4:37 p.m.
On Sun, Feb 6, 2011 at 10:12 PM, Alexey Khudyakov
Well Foldable and Traversable provide set of generic operations for containers. Although they are quite limited, containter must be polymorphic (e.g. no IntMap) and parameter must be of any type (e.g. no unboxed vectors) both are still quite useful.
I looked into providing instances for these but IIRC the performance was really bad. Someone need to look at inlining/specialization for these.
Also there is a container-classes package which provide set of type class for containers.
I'd like to avoid MPTC and fundeps if possible. Johan