Gu.Reactive
Gu.Reactive copied to clipboard
Helpers for using System.Reactive with INotifyPropertyChanged and INotifyCollectionChanged
Bumps [Microsoft.CodeAnalysis.CSharp.Workspaces](https://github.com/dotnet/roslyn) from 4.0.1 to 4.4.0. Release notes Sourced from Microsoft.CodeAnalysis.CSharp.Workspaces's releases. .NET 7.0 Preview 5 Release .NET 7.0 Preview 2 Release .NET 7.0 Preview 1 Release Changelog Sourced from...
```cs a.ObservePropertyChangedSlim(x => x.B!.C) ``` Maybe it works already, not tested.
``` a.ObservePropertyChangedSlim(x => x.B.C) ```
``` But was:
```cs public interface INotifyingIEnumerable : IEnumerable, INotifyCollectionChanged { } ``` Add to `ObservableFixedSizeQueue` for exposing it as readonly. Not sure it works when bound.
var view = foo.ObserveValue(x => x.Items).AsReadOnlyView();
```cs var filtered = xs.AsReadOnlyFilteredView(x => x.P != null); ``` Where `P` is a mutable property. Code fix can add: ```cs var filtered = xs.AsReadOnlyFilteredView( x => x.P != null,...