Difference between revisions of "Functional Reactive Programming"

From HaskellWiki
Jump to navigation Jump to search
(reworking and improving)
Line 1: Line 1:
Functional Reactive Programming integrates time flow and compositional events into functional programming. This provides an elegant way to express computation in domains such as interactive animations, robotics, computer vision, user interfaces, and simulation.
+
Functional Reactive Programming (FRP) integrates time flow and compositional events into functional programming. This provides an elegant way to express computation in domains such as interactive animations, robotics, computer vision, user interfaces, and simulation.
   
  +
== Libraries ==
The following libraries are implementations of FRP:
 
  +
* [http://conal.net/fran/ Fran]
 
* [[Grapefruit]]
 
* [[Grapefruit]]
 
* [[Reactive]]
 
* [[Reactive]]
Line 7: Line 8:
 
* [[Yampa]]
 
* [[Yampa]]
   
  +
== Material ==
== From [http://www.haskell.org/frp/ www.haskell.org/frp/], last updated 2003 ==
 
 
* [http://conal.net/papers Conal Elliott’s papers] (several about FRP)
This is a copy of the obsolete /frp/, added so a link from http://en.wikipedia.org/wiki/Functional_reactive_programming could be losslessly repointed from there to here.
 
  +
* [[Grapefruit#Publications and talks|Grapefruit-related publications and talks]]
 
* [http://www.haskell.org/yale/publications.html The Yale Haskell group’s latest publications] (mostly related to FRP)
   
 
== People ==
*[http://www.haskell.org/yale/publications.html The Yale Haskell group's latest publications] - Most are related to FRP
 
  +
* [http://www.apocalypse.org/pub/u/antony/home.htm Antony Courtney]
*[http://conal.net/papers Conal Elliott's papers] - Several are on FRP
 
*[http://conal.net/fran Fran] - Functional Animation
+
* [http://conal.net Conal Elliott]
  +
* Liwen Huang
 
  +
* Paul Hudak
People:
 
  +
* Wolfgang Jeltsch
 
*[http://www.apocalypse.org/pub/u/antony/home.htm Antony Courtney]
+
* [http://www.cs.nott.ac.uk/~nhn/ Henrik Nilsson]
*[http://conal.net Conal Elliott]
+
* [http://mcis.western.edu/~jpeterson/ John Peterson]
*[http://pantheon.yale.edu/~lh234/ Liwen Huang]''broken link''
 
*[http://www.cs.yale.edu/homes/hudak-paul.html Paul Hudak]''broken link''
 
*[http://www.cs.yale.edu/~nilsson Henrik Nilsson]
 
*[http://mcis.western.edu/~jpeterson/ John Peterson]
 

Revision as of 18:50, 8 June 2008

Functional Reactive Programming (FRP) integrates time flow and compositional events into functional programming. This provides an elegant way to express computation in domains such as interactive animations, robotics, computer vision, user interfaces, and simulation.

Libraries

Material

People