ReactGraph
ReactGraph copied to clipboard
ReactGraph is a library to make change propagation easy in .NET.
I used this class in Shouldly to clean up expressions so I pulled it out into a new project. https://github.com/JakeGinnivan/ExpressionToString
``` graphOptionsEngine .Assign(() => MortgageGraph) .From(() => CreateMortgageGraph(ShowRoots, ShowFormulas), ex => { }) .TriggerNow(); ``` Not sure about the name of the API, but should be able to trigger the...
``` csharp void Main() { var engine = new DependencyEngine(); engine.Assign(() => C).From(() => A + B, e => { }); engine.Assign(() => D).From(() => A + C, e =>...
Both the scenario of calling Bind twice, but also two separate expressions targeting the same property
I'm not sure yet if we need that for everything, or per expression...
Should suspend walking through the dependency graph and then resume (continuation)