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 be able to bind to an ObservableArray while only receiving updates on the first n items of that array. Much like I would use prefix(_:) on an Array.
For example:
reviews.prefixCollection(5).bind(to: ...)
Is there any way I can achieve this effect without using filterCollection and looking up the index in the closure?
The text was updated successfully, but these errors were encountered:
I'd like to be able to bind to an ObservableArray while only receiving updates on the first n items of that array. Much like I would use prefix(_:) on an Array.
For example:
Is there any way I can achieve this effect without using
filterCollection
and looking up the index in the closure?The text was updated successfully, but these errors were encountered: