Y
Hacker News
new
|
ask
|
show
|
jobs
by
markharper
2583 days ago
That sounds similar to the incremental lambda calculus described in this paper:
https://arxiv.org/abs/1312.0658
There's an implementation for DOM updates in Purescript (
https://blog.functorial.com/posts/2018-04-08-Incrementally-I...
), but I haven't come across a similar approach in Javascript yet.
1 comments
osrec
2583 days ago
Yes, it's a similar idea. The only difference I can see is that in our library, the dependencies are automatically tracked, and there is some additional clever scheduling around when a function should be run.
link