packages feed

heap 0.2 → 0.2.1

raw patch · 2 files changed

+3/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/Heap.hs view
@@ -81,6 +81,7 @@ 	foldMap f (Tree _ x l r) = foldMap f l `mappend` f x `mappend` foldMap f r  instance (HeapPolicy p a, Read a) => Read (Heap p a) where+#ifndef __HADDOCK__ #ifdef __GLASGOW_HASKELL__ 	readPrec = parens $ prec 10 $ do 		Ident "fromList" <- lexP@@ -92,6 +93,7 @@ 		("fromList", s) <- lex r 		(xs, t) <- reads s 		return (fromList xs, t)+#endif #endif  -- |
heap.cabal view
@@ -1,5 +1,5 @@ Name:          heap-Version:       0.2+Version:       0.2.1 Stability:     beta Category:      Data Synopsis:      Heaps in Haskell