
Seems to be similar to Transient:
https://www.fpcomplete.com/user/agocorona/monad-reactive-programming-2
2015-07-08 20:54 GMT+02:00 Silvio Frischknecht
Hi Haskellers,
I know there are already a lot of FRP libraries out there, but still. This is my take on it.
It's a very simple library. There are portable Signals that are basically TVars with some update Notifiers. Then you can combine them using a continuation like monad.
Because you have a Monad and not only Applicative it's very intuitive and powerful.
Check it out.
github: https://github.com/yokto/Updater hackage: https://hackage.haskell.org/package/Updater
Be warned though. There are probably still some bugs around, but the basics seem to work and there is an example program.
Silvio _______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe
-- Alberto.