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
A ChangedStorage should provide a way of lazily computing other values, only if the given component was changed before. This is similar to FlaggedStorage (#93), however it checks modifications based on equality with the previous value.
The text was updated successfully, but these errors were encountered:
This has been decided to be too expensive in practice. One should instead use the FlaggedStorage. Also, an implementation of a ChangedStorage is only possible on the user side (or with knowledge of how far they read the modification events), thus, if there's a special case that needs equality checks, a user-provided implementation is better.
Related: #89
A
ChangedStorage
should provide a way of lazily computing other values, only if the given component was changed before. This is similar toFlaggedStorage
(#93), however it checks modifications based on equality with the previous value.The text was updated successfully, but these errors were encountered: