v0.1.4-beta
Pre-release
Pre-release
Add function call operator to cell
and typed_cell
containers.
This allows runtime dependency tracking with dynamically typed cells:
auto a1 = live_cells::variable(0);
auto a2 = live_cells::typed_cell<int>(a1);
auto f = live_cells::computed([=] {
return a2() + 1
});