packages feed

pointedlist 0.0.1 → 0.0.2

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/List/PointedList.hs view
@@ -78,7 +78,7 @@   error "cannot move to previous element"  tryPrevious   (PointedList (l:ls) x rs) = PointedList ls l (x:rs) --- | An alias for 'deleteRight'.+-- | An alias for 'insertRight'. insert :: a -> PointedList a -> PointedList a insert = insertRight 
pointedlist.cabal view
@@ -1,5 +1,5 @@ Name:          pointedlist-Version:       0.0.1+Version:       0.0.2 Synopsis:      A zipper-like comonad which works as a list, tracking a position. Category:      Data Description: