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
And that's nearly the logic you need to observe IState<T> changes. Or simply use await foreach (var computed in state.Changes(...)) or await foreach (value, error) in state.Changes(...)). Computed<T> implements IResult<T>, which means it can be deconstructed to (T value, Exception? error).
Could you please provide me with an example?
The text was updated successfully, but these errors were encountered: