You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto x = state<int>(0);
x.set(42);
auto y = x.xform(zug::map([](auto x) { return x; }));
assert(y.get() == 0); // fails, returns 42commit(x);
assert(y.get() == 42); // now is when this should be true
The text was updated successfully, but these errors were encountered:
I think this is an example of this behavior:
The text was updated successfully, but these errors were encountered: