reactive 0.11.3 → 0.11.4
raw patch · 3 files changed
+6/−6 lines, 3 files
Files
- README +3/−3
- reactive.cabal +2/−2
- src/FRP/Reactive/Internal/Reactive.hs +1/−1
README view
@@ -10,8 +10,8 @@ remembers the latest function to apply to a new argument and the last argument to which to apply a new function.) -The theory and implementation of Reactive are described in the paper "Simply-efficient functional reactivity" [4].+The theory and implementation of Reactive are described in the paper+"Push-pull functional reactive programming" [4]. Note that cabal[5], version 1.4.0.1 or greater is required for installation. @@ -28,5 +28,5 @@ [1] http://haskell.org/haskellwiki/Reactive [2] http://haskell.org/haskellwiki/DataDriven [3] http://www-pu.informatik.uni-tuebingen.de/lula/deutsch/publications.html-[4] http://conal.net/papers/simply-reactive+[4] http://conal.net/papers/push-pull-frp/ [5] http://www.haskell.org/cabal/download.html
reactive.cabal view
@@ -1,5 +1,5 @@ Name: reactive-Version: 0.11.3+Version: 0.11.4 Synopsis: Push-pull functional reactive programming Category: reactivity, FRP Description:@@ -22,7 +22,7 @@ Please see the project wiki page: <http://haskell.org/haskellwiki/reactive> . © 2007-2009 by Conal Elliott; GNU AGPLv3 license (see COPYING).- I am not thrilled with GPL.+ I am not thrilled with GPL, and I doubt I'll stay with it for long. If you would like different terms, please talk to me. . With contributions from: Robin Green, Thomas Davie, Luke Palmer,
src/FRP/Reactive/Internal/Reactive.hs view
@@ -122,7 +122,7 @@ -> (EventG s a -> EventG t b) inEvent f = Event . f . eFuture --- | Apply a unary function inside an 'EventG' representation.+-- | Apply a binary function inside an 'EventG' representation. inEvent2 :: (FutureG t (ReactiveG t a) -> FutureG t (ReactiveG t b) -> FutureG t (ReactiveG t c)) -> (EventG t a -> EventG t b -> EventG t c)