
28 May
2013
28 May
'13
6:32 a.m.
Jose A. Lopes
unionWith :: Ord k => (a -> b -> c) -> Map k a -> Map k b -> Map k c
what should be the result of unionWith undefined (M.singleton False 42) (M.singleton True "bar") ? perhaps you mean intersectionWith, which already has the type you want. - J.W.