packages feed

Stream 0.2.4 → 0.2.5

raw patch · 2 files changed

+4/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/Stream.hs view
@@ -86,7 +86,9 @@  instance Arbitrary a => Arbitrary (Stream a) where   arbitrary = liftM2 Cons arbitrary arbitrary-  coarbitrary (Cons x xs) = coarbitrary x . coarbitrary xs+  coarbitrary xs gen = do+    n <- arbitrary+    coarbitrary (take (abs n) xs) gen  infixr 5 <:> -- | The @ \<:\> @ operator is an infix version of the 'Cons'
Stream.cabal view
@@ -1,5 +1,5 @@ Name:                   Stream-Version:                0.2.4+Version:                0.2.5 License:                BSD3 License-file:           LICENSE Author:                 Wouter Swierstra