Cysharp / ObservableCollections

High performance observable collections and synchronized views, for WPF, Blazor, Unity.
MIT License
544 stars 43 forks source link

Change the INotifyCollectionChaneged to IE<TView> from IE<(T, View)> #25

Closed hadashiA closed 7 months ago

hadashiA commented 7 months ago

7

The current implementation of INotifyCollectionChanged (for WPF) is IEnumerable<(T, TVIEW)>. This PR change this to IEnumerable<TView>.

This is because it is the INotifyCOllectionChanged interface is for binding.

The following breaking changes are included ..!