Cysharp / ObservableCollections

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

Add IReadOnlyObservableList interface #54

Closed AnnulusGames closed 3 months ago

AnnulusGames commented 3 months ago

Related to #45, IReadOnlyReactiveCollection<T> in UniRx has an indexer definition, but IObservableCollection<T> does not have an equivalent definition.

Therefore, I added IReadOnlyObservableList<T> as an interface to handle both IReadOnlyList<T> and IObservableCollection<T>.

neuecc commented 3 months ago

ok, thanks!