reactive-banana 0.5.0.0 → 0.5.0.1
raw patch · 2 files changed
+4/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
reactive-banana.cabal view
@@ -1,5 +1,5 @@ Name: reactive-banana-Version: 0.5.0.0+Version: 0.5.0.1 Synopsis: Practical library for functional reactive programming (FRP). Description: Reactive-banana is a practical library for Functional Reactive Programming (FRP).
src/Reactive/Banana/Combinators.hs view
@@ -144,6 +144,8 @@ collect e = E $ singleton <$> unE e -- | Emit simultaneous event occurrences.+-- The first element in the list will be emitted first, and so on.+-- -- Up to strictness, we have -- -- > spill . collect = id@@ -262,7 +264,7 @@ fromLeft (Left a) = Just a fromLeft (Right b) = Nothing fromRight (Left a) = Nothing- fromright (Right b) = Just b+ fromRight (Right b) = Just b -- | Combine simultaneous event occurrences into a single occurrence.