d0847f2519
Improve the performance of reversed list view iterators by delegating to underlying list iterators instead of using implementations provided by the AbstractList. Latter use AbstractList::get(index: Int) to implement next() and previous() methods and depending on the underlying list's implementation it may lead to worse performance. The change also improves reversed list views test coverage.