packages feed

dlist 0.3 → 0.3.1

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/DList.hs view
@@ -102,11 +102,11 @@  -- | Return the head of the list head :: DList a -> a-head = list (error "Data.DList.head: empty list") (curry fst)+head = list (error "Data.DList.head: empty list") const  -- | Return the tail of the list tail :: DList a -> DList a-tail = list (error "Data.DList.tail: empty list") (curry snd)+tail = list (error "Data.DList.tail: empty list") (flip const)  -- | Unfoldr for difference lists unfoldr :: (b -> Maybe (a, b)) -> b -> DList a
dlist.cabal view
@@ -1,5 +1,5 @@ Name:                dlist-Version:             0.3+Version:             0.3.1 Synopsis:            Differences lists Description:         Differences lists: a list-like type supporting O(1) append Category:            Data