Tagged Questions
111
votes
9answers
24k views
What is (functional) reactive programming?
What does functional reactive programming (FRP) mean in practice? What is non-reactive programming?
The description in Wikipedia is quite abstract.
10
votes
3answers
347 views
Examples of useful or non-trival dual interfaces
Recently Erik Meijer and others have show how IObservable/IObserver is the dual of IEnumerable/IEnumerator. The fact that they are dual means that any operation on one interface is valid on the other, ...
6
votes
1answer
466 views
The difference between Reactive and Functional-Reactive programming
I have been doing some research into reactive programming recently and I'm finding it hard to find a good description of the difference between Reactive and Functional-Reactive.
Is it simply that ...
3
votes
1answer
117 views
Is the 'Signal' representation of Functional Reactive Programming correct?
I have been researching FRP and found a bunch of different implementations. One model I have seen is one I will refer to as the 'Signal' representation. This essential combines Events and Behaviours ...
2
votes
1answer
203 views
Using MonadPlus in FRP.Reactive.FieldTrip
I'm studying FRP at this moment through FieldTrip adaptor. And hit the problem with strange way of frames scheduling and integration. So now I'm trying to build own marker Event for aligning Behaviour ...