Gu.Reactive icon indicating copy to clipboard operation
Gu.Reactive copied to clipboard

Helpers for using System.Reactive with INotifyPropertyChanged and INotifyCollectionChanged

Results 16 Gu.Reactive issues
Sort by recently updated
recently updated
newest added

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...

dependencies

```cs a.ObservePropertyChangedSlim(x => x.B!.C) ``` Maybe it works already, not tested.

``` a.ObservePropertyChangedSlim(x => x.B.C) ```

```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,...