keys 0.2.6 → 0.2.7
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/Key.hs +2/−2
- keys.cabal +1/−1
Data/Key.hs view
@@ -516,12 +516,12 @@ instance Keyed [] where mapWithKey f xs0 = go xs0 0 where go [] _ = []- go (x:xs) n = f n x : (go xs $! n)+ go (x:xs) n = f n x : (go xs $! (n + 1)) instance FoldableWithKey [] where foldrWithKey f z0 xs0 = go z0 xs0 0 where go z [] _ = z- go z (x:xs) n = f n x (go z xs $! n)+ go z (x:xs) n = f n x (go z xs $! (n + 1)) instance TraversableWithKey [] where traverseWithKey f xs0 = go xs0 0 where
keys.cabal view
@@ -1,6 +1,6 @@ name: keys category: Data Structures, Containers-version: 0.2.6+version: 0.2.7 license: BSD3 cabal-version: >= 1.6 license-file: LICENSE