|
|
|
|
|
by HelloNurse
368 days ago
|
|
Two perplexing aspects: - Why so many lambda functions instead of regular named functions? Is it a technical limitation? Something important should have a name, for instance (for the example in the article) different ways to compute greetings from names. - How are the computations ordered, particularly multiple Effects that trigger at the same change? For instance, in the example in the article, when the name changes the updated greeting is printed before or after the updated location. |
|
The Signals evaluation are topologically ordered and are running synchronously. Effects are running in the order they are defined.