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
I'd like to have the same thing implemented in #879 for the ToSortedCollection method in the library itself. For now, I created an extension method myself:
public static IObservable<IReadOnlyCollection<TObject>> ToSortedCollection<TObject, TKey>(this IObservable<IChangeSet<TObject, TKey>> source)
where TObject : notnull, IComparable<TObject>
where TKey : notnull => source.ToSortedCollection(Comparer<TObject>.Default);
Considerations
It would be nice to have this in the library as for the SortAndBind.
The text was updated successfully, but these errors were encountered:
Describe the functionality desired 🐞
I'd like to have the same thing implemented in #879 for the ToSortedCollection method in the library itself. For now, I created an extension method myself:
Considerations
It would be nice to have this in the library as for the SortAndBind.
The text was updated successfully, but these errors were encountered: