-
functional friends: in an immutable virtual dom system, how do you avoid rerendering the whole virtual dom when anything changes?
-
i have a system that is basically update: state, input → state’ draw: state → virtual-dom but redrawing every frame makes diffs slow
-
e.g. every time you call render get *completely* different objects, right? github.com/Raynos/main-loop
-
the results of two calls to render should never have any referentially equality, so why check for it?
