Map 0.1.3.0 → 0.1.3.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/Map/Class.hs +1/−1
- Map.cabal +1/−1
Data/Map/Class.hs view
@@ -97,7 +97,7 @@ instance (Map m, Map n) => Map (Compose m n) where empty = Compose empty- alterF f (i, j) = fmap Compose . alterF (maybe (Nothing <$ f Nothing) (fmap Just . alterF f j)) i . getCompose+ alterF f (i, j) = fmap Compose . alterF (maybe (fmap (singleton j) <$> f Nothing) (fmap Just . alterF f j)) i . getCompose mergeA f = fmap Compose ∘∘ compose2 (mergeA $ \ i ->
Map.cabal view
@@ -1,5 +1,5 @@ name: Map-version: 0.1.3.0+version: 0.1.3.1 synopsis: Class of key-value maps -- description: license: BSD3