packages feed

ListZipper 1.0.0.0 → 1.1.0.0

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/List/Zipper.hs view
@@ -31,9 +31,9 @@ cursor (Zip _ (a:_)) = a  left, right :: Zipper a -> Zipper a-left  (Zip ls (a:rs)) = Zip (a:ls) rs+left  (Zip (a:ls) rs) = Zip ls (a:rs) left  z               = z-right (Zip (a:ls) rs) = Zip ls (a:rs)+right (Zip ls (a:rs)) = Zip (a:ls) rs right z               = z  insert, push :: a -> Zipper a -> Zipper a
ListZipper.cabal view
@@ -1,5 +1,5 @@ name:            ListZipper-version:         1.0.0.0+version:         1.1.0.0 copyright:       (c) 2008 Ryan Ingram license:         BSD3 license-file:    LICENSE