F # Functional reactive programming using graphical interfaces

I am trying to learn functional reactive programming using graphical interfaces in F #. In my opinion, this template allows a unidirectional data stream by updating the global State object, which, in turn, updates the corresponding components of the user interface. I found posts like this: http://steellworks.blogspot.de/2014/03/tutorial-functional-reactive.html , which talks about how to subscribe to Observables and when the input changes, but I tried to figure out how to keep unchanged A global state that updates all necessary components. I am trying to implement this in Eto.Forms, since I want it to be cross-platform compatible. I'm not sure if FRP is even the template I'm looking for, or if I look in the completely wrong direction.

Basically, my question is: how do I go about implementing knitting as an FRP template in F #

+4
source share

Source: https://habr.com/ru/post/1651452/


All Articles