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
union :: Ord k => Map k a -> Map k a -> Map k a
unionWith :: Ord k => (a -> a -> a) -> Map k a -> Map k a -> Map k a
unionWithKey :: Ord k => (k -> a -> a -> a) -> Map k a -> Map k a -> Map k a
unions :: Ord k => [Map k a] -> Map k a
unionsWith :: Ord k => (a -> a -> a) -> [Map k a] -> Map k a
so it would be only consistent to have a
unionsWithKey :: Ord k => (k -> a -> a -> a) -> [Map k a] -> Map k a
as well.
The text was updated successfully, but these errors were encountered:
Hi,
I currently see
so it would be only consistent to have a
as well.
The text was updated successfully, but these errors were encountered: