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
Scrolling backwards, WindowIterator should emit items in order eg. 10, 9, 8, 7,...
Currently backward scrolling is only considered on a Window basis, but items within the Window are ordered forward.
Using a limit of eg. 3 would therefore lead to something like 8, 9, 10, 5, 6, 7...
The text was updated successfully, but these errors were encountered:
Use ReverseListIterator instead of Stream API to reduce overhead. ListIterator provides means to iterate backwards so we're wrapping the existing iterator.
See #2857.
Original pull request: #2858.
Use ReverseListIterator instead of Stream API to reduce overhead. ListIterator provides means to iterate backwards so we're wrapping the existing iterator.
See #2857.
Original pull request: #2858.
Scrolling backwards,
WindowIterator
should emit items in order eg. 10, 9, 8, 7,...Currently backward scrolling is only considered on a
Window
basis, but items within theWindow
are ordered forward.Using a
limit
of eg. 3 would therefore lead to something like 8, 9, 10, 5, 6, 7...The text was updated successfully, but these errors were encountered: